How to fetch formula of a cell using blue prism

VJR

Well-Known Member
Hi,

How I can get the formula of a particular cell in excel.
syed,

Make a copy of the 'Get Cell Value' action of the Excel VBO and in the new copy make the modifications as below

Dim cellVal as String = GetInstance(handle).ActiveCell.Value
Dim cellVal as String = GetInstance(handle).ActiveCell.Formula
 

GatesV

Member
Not sure what went wrong with subhash, but this is working perfectly on my side of things.

Thanks @ VJR.
 
Top