Forum Discussion
rima_ch
3 years agoFrequent Visitor
Dax Lookup
Hello everyone, please I need a help, I want to add a new column "Column 4" in front of each row I habe to see the value of the column Title, As you can see below I need to add the column4 "each Depa...
- 3 years ago
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
It is for creating a new column.
Title Name CC = SUMMARIZE ( FILTER ( Data, Data[Department] = EARLIER ( Data[Department] ) && Data[Title] <> BLANK () ), Data[Title] )
Jihwan_Kim
3 years agoSuper User
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
It is for creating a new column.
Title Name CC =
SUMMARIZE (
FILTER (
Data,
Data[Department] = EARLIER ( Data[Department] )
&& Data[Title] <> BLANK ()
),
Data[Title]
)
- rima_ch3 years agoFrequent Visitor
Thank you a lot, That's what I was looking for.