Hi
How should I assign “NA” in the if statement below? Thanks
if(String.IsNullOrEmpty(Str), Str=“NA”, Str)
Hi
How should I assign “NA” in the if statement below? Thanks
if(String.IsNullOrEmpty(Str), Str=“NA”, Str)
Hi @Anonymous2
You have done perfect just remove the “Str=”
if(String.IsNullOrEmpty(Str), “NA”, Str)
Mark as solution and like it if this helps you
Happy Automation
Best Regards
Er Pratik Wavhal
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.