Example:
case column1 == column2
when True then "No Transfers"
else "Transfers"
end
In case anyone asks the same question -
This worked for me,
if ( columnA_name = columnB_name, 'Yes', 'No' )
*Output type = Text
This did NOT work,
case
when columnA_name == columnB_name,
then 'Yes',
when columnA_name != columnB_name,
then 'No',
else null
end
*Output type = Text
