Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I need to create a custom Categeory = "BA" and "Place" ="" then "BA" else "".
Solved! Go to Solution.
@Anonymous , Try a new column like
if(not(isblank([Categeory])) && isblank([Place]), [Categeory], blank())
Based on highlighted column
@Anonymous
In Power Query, you would create a custom column as follows:
requiredColumn =
if [Categeory] <> null and [Place] = null then [Categeory] else null
@amitchandak has already provided the best DAX solution.
Pete
Proud to be a Datanaut!
Hi @Anonymous ,
you can do it like this:
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
@Anonymous
In Power Query, you would create a custom column as follows:
requiredColumn =
if [Categeory] <> null and [Place] = null then [Categeory] else null
@amitchandak has already provided the best DAX solution.
Pete
Proud to be a Datanaut!
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |