Convert content of a variable to variable

Hello,

Is it possible to convert the content of a variable to a variable it self ?

I have a variable which collects data from an Excel file, for example Var1 = “in_Transaction(“Test1”).ToString”

I need the content of Var1, to get the content of an other Excel file.

Up to now, it only show as String.

Is there anyway to make that content to become somekind of variable ?

Regards,
Mohssine

HI @mz3bel

I don’t think so we can able to do this.

Can you explain what you want to achieve? What was the issue are you facing?

Regards
Gokul

1 Like

HI @mz3bel

You dont need a double quotes there

You can just assign whithout double quotes the value from the excel n_Transaction(“Test1”).ToString is itself is a string so

Var1= in_Transaction(“Test1”).ToString

Regards
Sudharsan

Hello @Gokul001

Well, I have two Excel files, I need to get from Excel 1 the names of the values that are stored in Excel 2, trying to figure out a way of doing it.

Which this will conclude on replacing some other values on a Word Document.

Regards,
Mohssine

Hello,

I found an way to counter the issue, since there’s no way to convert content of a variable to become a variable it self, I used the content it self on an other way to get what I needed.

Regards,
Mohssine

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.