07-31-2013 04:03 AM
Hi
I have a huge data that I need to write on excel in the first row so I require to access columns AAA, AAB....
But using ExcelRowColToRange.vi i am able to go upto column ZZ. Can anyone please suggest a way to modify this VI in order to fulfil my requirement.
Thanks
Solved! Go to Solution.
07-31-2013 04:12 AM - edited 07-31-2013 04:19 AM
Hi panka,
right now the logic is only made for 2 chars as COLUMN indicator. You have to change that logic into providing upto 3 chars...
IF column < 27 THEN format only one char ELSE IF column < 702 THEN format just two chars ELSE IF column < 26*26*26+26*26+26 THEN format three chars ELSE
format four chars
ENDIF
The first two cases already exit, you only need to add the 3rd one by now!
07-31-2013 04:19 AM
Hi,
thanks a lot for replying GerdW
I understand that the logic is limited for 2 characters and i tried a lot to modify it for 3 characters and was able to go until AAZ but not beyond.
Can u please provide me a solution of doing this.
Thanks Again
07-31-2013 04:21 AM
07-31-2013 04:28 AM
Here is the VI to which i did modification.
I will be very thankful if you can point out my mistakes.
07-31-2013 04:34 AM
07-31-2013 04:45 AM
Sorry for the attachment.
Can you please check this one.
07-31-2013 04:57 AM