Hello,
Attempting to do a basic calculated column that will return whether the transaction is categorized as Income or Expense by determining if the Amount column is positive or negative, using SWITCH/TRUE. I am getting an error message that says ‘Unexpected expression’ when I use the less than (<) or greater than (>) symbols. I’ve seen these used before in Switch/True so I am pretty confused. Here’s the DAX:
Transaction Type = SWITCH(
TRUE(),
Transactions[Amount] = <0, “Expense”,
Transactions[Amount] = >0, “Income”,
BLANK())
I imagine this is a really easy fix. Thank you.