LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

write data from waveform chart to excel

Solved!
Go to solution

Hi,

 

I am trying to create a button that save de real time values recieved in a waveform chart. I don't know how to save it alls, because I don't know if is needed a buffer to save all or how can I do it.

 

It wil be faboulous if someone give me ideas!

 

 

Thanks so much for your support!

0 Kudos
Message 1 of 7
(9,466 Views)

There is a VI called Write to Measurement File. You can find it in express VI -> Output.

 

There is another way you can do this. Convert the graphed data using "Number to Fractional string" VI (You can search for this) and wire the output to "Write to Spreadsheet" VI.

 

Hope it helps 🙂

Message 2 of 7
(9,464 Views)
Solution
Accepted by topic author mlop

Hi mlop,

 

You can go through the attached VI. You will get some idea of how to do it..

 

Regards,

Nitzz

(Give Kudos to good Answers and Mark it as a Solutoin if your problem is Solved:smileywink:

Message 3 of 7
(9,463 Views)

hi

i saw ur answer , it's too complete but i want to save data from graph that i can't connect to ur projects?

my project is attached and i connect with ethernet

what should i do???

0 Kudos
Message 4 of 7
(9,172 Views)

@mz-nap wrote:

hi

i saw ur answer , it's too complete but i want to save data from graph that i can't connect to ur projects?

my project is attached and i connect with ethernet

what should i do???


Please do not create posts in multiple places. Keep the discussion in one place. You already created your own thread: http://forums.ni.com/t5/LabVIEW/save-data-from-graph/td-p/2007035 . Do not hijack someone else's.

0 Kudos
Message 5 of 7
(9,162 Views)

NiltzZ, in the file you attached, there is write to spreadsheet with format (%3f) i.e., it will save the data upto 3rd place of decimal. Can you suggest some way to save the data as it is. Can we save the complete size of the numbers upto whatever place of decimal we are getting?

0 Kudos
Message 6 of 7
(4,234 Views)

@Ben121 wrote:

NiltzZ, in the file you attached, there is write to spreadsheet with format (%3f) i.e., it will save the data upto 3rd place of decimal. Can you suggest some way to save the data as it is. Can we save the complete size of the numbers upto whatever place of decimal we are getting?


You can in general specify longer format specifiers when using Write to Spreadsheet (or similar nodes).

You'll have to pick some value though.

 

For double precision numbers, 15-17 significant figures is enough - see https://en.wikipedia.org/wiki/Double-precision_floating-point_format

For smaller precisions, fewer significant figures are required.

It may be that based on your source, you have far fewer above your noise floor.


GCentral
0 Kudos
Message 7 of 7
(4,215 Views)