Cannot refer to instance member of a class in uipath

Hello Team,
Im creating a ReFramework WF,
i’m trying to check whether the Transaction item is Numeric or not,
getting following error,
cannot refer to instance member of a class in uipath,

,
Please guide

5 Likes

Hi @Mayyur

You have to use the IsNumeric function like this :slight_smile:
image

So in your case: in_TransactionItem(“CashIn”).IsNumeric

2 Likes

Hi,

Can you try the following expression?

IsNumeric(in_TransactionItem.SpecificContent("CashIn").ToString())

The following page will also help you.

Regards,

Hello,
The data is not in Queue,
it is in excel file(Datarow),

Hello,
it is not working,
giving following error,

Try this

In_TransactionItem(“CashIn”).ToString.IsNumeric

9 Likes

Thanks alot

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