How to replace a null value with empty string in datatable in UiPath
Please refer the screenshot, i want to replace this NULL value into Empty String in UiPath ACTIVITY
How to replace a null value with empty string in datatable in UiPath
Please refer the screenshot, i want to replace this NULL value into Empty String in UiPath ACTIVITY
If its in datatable then use this
Cheers
Can it be done in SQL Query after selecting the table using RUN COMMAND
In the select query instead of column name use ISNULL(columnname,’’)
Assuming yours is sql server
Cheers