Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hello
I want to use a DAX measure (not a calculated column) as a fourth column (outlined in red, below) within a table visualisation.
However, my DAX only returns the single row:
DAX =
VAR varStatusGroup = "Final"
VAR varStatus = "Disposed"
RETURN
CALCULATE (
MIN('Status'[Status])
,KEEPFILTERS('Status'[Status group] = varStatusGroup)
,KEEPFILTERS('Status'[Status] = varStatus)
)
What am I doing wrong?
I want:
Data model:
Hi @noneother
Based on your post and dax you shared, you want to show "Disposed" in the fourth column, so if I got it correctly, try this:
DAX =
"Disposed"
Otherwise, can you please add more details?
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
@noneother does this work?
CALCULATE (
MIN('Status'[Status])
,'Status'[Status group] = "Final"
,'Status'[Status] = "Disposed"
)
That works but I introduces redundant rows, creating way more than the original 5 rows for Type ID: AEG3ML
@noneother is it kindly possible to provide a sample pbix please?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |