Replace NaN value to blank in excel
10 views (last 30 days)
Show older comments
I have excel file with 3 column. The third column has NaN value. i need to replace the NaN value to blank...I not familiar with using excel in matlab .Can help me?
0 Comments
Answers (2)
Sachin Ganjare
on 19 Oct 2012
2 Comments
Sachin Ganjare
on 19 Oct 2012
This script will perform required operations.
For Example:
Data = readfromexcel(File,'All');
Data = cellNaNReplace (Data,0);
Sachin Ganjare
on 19 Oct 2012
Also you can refer:
Hope it helps!!!
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!