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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I wand to creat a new column that bring the data filtered from other column in the same table.
Look at the image, the idea is to have another column with amount value that type is 22, for example.
Thanks,
Hi @aleonor ,
If you want to do it in DAX.
New Column = IF ('Table'[Type] = 22, 'Table'[Amount],Blank())
If in Power Query
if [Type] = 22 then [Amount] else null
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |