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,
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!