LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to access column AAA and further using ExcelRowColToRange.vi

Solved!
Go to solution

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

0 Kudos
Message 1 of 8
(3,043 Views)

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!

 

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 2 of 8
(3,037 Views)

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

 

0 Kudos
Message 3 of 8
(3,028 Views)

Hi panka,

 

show what you have done so far and we will point out your errors. That's how the forum works!

 

Btw. nothing comes for free and you will learn LabVIEW better by actually "programming" instead of "using"...

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 4 of 8
(3,024 Views)

Here is the VI to which i did modification.

I will be very thankful if you can point out my mistakes.

0 Kudos
Message 5 of 8
(3,019 Views)

Sorry, can't open. See my signature...

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 6 of 8
(3,010 Views)

Sorry for the attachment.

Can you please check this one.

0 Kudos
Message 7 of 8
(3,000 Views)
Solution
Accepted by topic author panka

Hi panka,

 

try that one...

 

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 8 of 8
(2,996 Views)