Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
so i made a new measure which resulted in a value i now want that value to appear all the way down a colum so that i can pull other fields in to create a table and also perform calculations from other columns with the valye created in the measure
Solved! Go to Solution.
Hi @Jay2022
Is this a calculated column (back end in the data table) or a measure (in a visual).
If it is a measure in a visual then you can use:
Calculate( [Your Measure], table[Column] = "Your filters") to add filters
or
Calculate( [Your Measure], all(table), All(table[Column])) to remove certain filters on tables or columns.
If it is a calculated column, you can create the column and set it equal to your measure.
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Hi @Jay2022
This may help:
Here I create a set of sample:
Table:
Then add a measure:
Measure = SUM('Table'[Values])
If I want the value of the measure shows grouped by ID, it's possible to add a filter in the measure:
MEASURE =
VAR _currentID =
SELECTEDVALUE ( 'Table'[ID] )
RETURN
CALCULATE (
SUM ( 'Table'[Values] ),
FILTER ( ALL ( 'Table' ), 'Table'[ID] = _currentID )
)
The result is as follow:
Managing “all” functions in DAX: ALL, ALLSELECTED, ALLNOBLANKROW, ALLEXCEPT - SQLBI
Understand the Filter Context and How to Control i... - Microsoft Fabric Community
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Jay2022
Is this a calculated column (back end in the data table) or a measure (in a visual).
If it is a measure in a visual then you can use:
Calculate( [Your Measure], table[Column] = "Your filters") to add filters
or
Calculate( [Your Measure], all(table), All(table[Column])) to remove certain filters on tables or columns.
If it is a calculated column, you can create the column and set it equal to your measure.
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
15 | |
13 | |
10 | |
10 |
User | Count |
---|---|
12 | |
10 | |
6 | |
6 | |
5 |