Forum Discussion
elmosfire
8 years agoFrequent Visitor
IF Statement - New Column
I am new to Power BI and I am struggling with "if" and "and'. I have a column with department numbers and a column with agencies. There are some agencies that need to be realigned based on there d...
- 8 years ago
Hey,
I guess if you adjust your M statement this way:
f (Department Number] >=3000 and [Department Number] <=3999) and ([Agency] = "Train" or [Agency] = "Office") then "Bus" else [Agency]the error will disappear.
Regards,
Tom
TomMartens
Super User
8 years agoHey,
I guess if you adjust your M statement this way:
f (Department Number] >=3000 and [Department Number] <=3999)
and ([Agency] = "Train" or [Agency] = "Office") then "Bus"
else [Agency]
the error will disappear.
Regards,
Tom
elmosfire
8 years agoFrequent Visitor
Tom
That worked like a charm.
Thanks a million...much appreciated.
I was about to scrap this assignment.