I have an external application which exports table data to the excel value. Every cell has numeric value but exported in text format. Some values in table are integer, some float, some exponential, some should remain in text format.
Tell me please, is there way to automatically recognize and set format of values? We should possibly consider cell column because value matched to the same mask should have different format. For example:
'12345' => 12345 in one column
'12345' => 0012345 in other column
So tell me, what the best way to do this?