Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi world!
I came from the green side (Qlik) so I´ve found some problemns developing some "script" tasks that for sure you will help me
It´s really easy.
I want to add a new column (flag column) with values 0 and 1 when the following isntructions:
****Column ID is NULL AND Column TYPE is different than the value "house"****
ID, | TYPE, | FLAG, |
123 | house | 0 |
21232 | garage | 0 |
4235 | store | 0 |
24 | house | 0 |
garage | 1 | |
store | 1 | |
house | 0 | |
garage | 1 | |
store | 1 |
In Qlik should be something like if(isnull(ID) and TYPE <>"house",1,0)
But I am a beginner in DAX model so I need some help
Solved! Go to Solution.
@Anonymous
Try this formula
Column = IF(LEN(Table[COLUMN_D])=0 && Table[TYPE] <> "house",1,0)
OR
Column = IF(Table[COLUMN_D]=BLANK() && Table[TYPE] <> "house",1,0)
Try
Flag = IF(ISBLANK(Table2[ID]) && Table2[TYPE,] <> "House",1,0)
@Anonymous
Try this formula
Column = IF(LEN(Table[COLUMN_D])=0 && Table[TYPE] <> "house",1,0)
OR
Column = IF(Table[COLUMN_D]=BLANK() && Table[TYPE] <> "house",1,0)
There is a problem with the formula the PBI says the following " Token RoghtParen expected" and select the first coma "," -->
,1,0)
any idea?
@Anonymous
Where did you put the formula? It seems that you are creating a column using Power Query.
This is a DAX formula.
Also based on regional settings the comma can be replaced with semicolon ' ; '
Ok I got it!!! I was trying to edit the query, I was in the wrong section.
Thanks all for the responses, BTW I needed ";" instead of ","
😉
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |