Hello So I added a compose funtion to my bot to look through the JobName column and check for empty cells. If it finds and empty cell it fills it with "unknown/notlisted" and if it doesnt it just uses what it does find. The expression I am using is.
if(empty(triggerBody()?['JobName']), 'Unknown/Not Listed', triggerBody()?['JobName'])
The problem is it fills all cells with "unknown/not listed" not just empty ones.