Is it possible to have an if statement that takes no action when returned false?
Example using a statement I am using currently:
if(${Course_Completed}= 'CC8001W' , 'Complete', 'Incomplete')
I would like to remove the 'Incomplete' part, like this:
if(${Course_Completed}= 'CC8001W' , 'Complete')
So that the only changes to the data will be to input Complete.
Or in other words, if current data exists, do not change it.
Any help?