Skip to main content

Hello everyone!

We have a file format that we work with, which is used by our engineering world to create bills of quantities for engineering projects.

The name of the format is SKN, and in fact it is very similar to csv/excle,

Is there a way I can just read it and put it in my workflow?

I am attaching an example of the file here (zipped)

Thank you!

Looking at it, it looks like each line (seperated by a new line) is a unique delimited entry. You'll be able to read it in using a textfile reader and then break down the lines based on how the data is delimited


Thanks @hkingsbury!


Reply