The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All,
I have a scenario I need help with. In my data I have a column called distributor. There can be many distributor names - like Arrow, Digi-Key, Master, etc. and there are blanks. The blanks mean there are no distributors involved. In a new column, I want to say to say something like this...
If distributor column has data, then call it POS. and If cell is blank, call it OEM.
When done, I want the new column I created to show any line that has a distributor name to show as POS and any blank cell will show as OEM. In the desktop app, I have multiple tables, but am using Billings. The column will be called OEM/POS
Is there a way to phrase this and make that happen?
Thanks
Emma
Solved! Go to Solution.
Hey @emma313823 ,
you can do that with a calculated column and the following code:
OEM POS = IF(Billing[distributor] <> BLANK(), "POS", "OEM")
Hey @emma313823 ,
you can do that with a calculated column and the following code:
OEM POS = IF(Billing[distributor] <> BLANK(), "POS", "OEM")