March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I have two columns: Column1 (integers) and Column2 (dummy variable - 0 or 1).
I have to insert Column3 in my dashboard such that it shows only values in Column1 for which Column2 = 1.
What is the best way to do it?
There is an example below.
Thanks!
Column1 --- Column2
100 ---- 0
250 ---- 1
99 ---- 0
10 ---- 1
120 ---- 1
Table in Power BI Dashboard should show this:
Column3
250
10
120
Solved! Go to Solution.
Hi, @Glibberg
You can try the following methods.
Table:
Table 2 = SUMMARIZE(FILTER('Table',[Column2]=1),'Table'[Column1])
The newly created table is your desired output and can be put directly into the dashboard.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Glibberg
You can try the following methods.
Table:
Table 2 = SUMMARIZE(FILTER('Table',[Column2]=1),'Table'[Column1])
The newly created table is your desired output and can be put directly into the dashboard.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Easiest way is to use the Filter Pane on the right side.
Drag a Table Visual onto your canvas.
Drag Column1 into the Column well. Select "Don't Summarize" in the dropdown.
Drag Column2 into the Filter Pane. Choose Basic Filtering and check the value 1.
Hope this helps you on your way.
Regards,
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
116 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
56 | |
51 |