Forum Discussion
JamesMurg
3 years agoHelper I
IF returns text
Good morning Hoping you can help, I have the below formula in Excel but I need it converting to DAX if someone can help me 🙂 =IF(AND([@Shipper]="",[@[Shipper Company]]=""),"No Shipper Informati...
- 3 years ago
if it calculated column
IF( AND('Table'[Shipper]="",'Table'[Shipper Company]=""),"No Shipper Information", IF('Table'[Shipper Company]="",'Table'[Shipper],'Table'[Shipper Company]))
eliasayyy
3 years agoMemorable Member
if it calculated column
IF(
AND('Table'[Shipper]="",'Table'[Shipper Company]=""),"No Shipper Information",
IF('Table'[Shipper Company]="",'Table'[Shipper],'Table'[Shipper Company]))