Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Want to group Records under $10m, and show details for those over.

Hi, everyone.

 

I am building a report and want to group all values below a certain threshold ($10m) and show the details for records over that value. So something like this:

 

RecordValue
Opportunity 1$100,000,000
Opportunity 2$250,000,000
All Opps under $10m

$35,000,000

         Total

$385,000,000


I could use a summary table to do this, but I am wondering if there is another way to do this without creating a new DAX Table? Any thoughts would be most welcome.

 

Thanks, Scott

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

So you don't want a new table? How about creating a column on raw table then create a visual as below?

Column = IF('Table'[Value]>=100000000,'Table'[Record],"All Opps under $10m")

6.PNG

5.PNG 

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

3 REPLIES 3
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

So you don't want a new table? How about creating a column on raw table then create a visual as below?

Column = IF('Table'[Value]>=100000000,'Table'[Record],"All Opps under $10m")

6.PNG

5.PNG 

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

You can try something like this 

 

https://www.youtube.com/watch?v=iH3gW_vy69o

 

Regards,

Harsh Nathani

Anonymous
Not applicable

Hi, @harshnathani. That is close, but I want to show the ungrouped records for all but one of the groups. Using that example, I want to show the records for the high and medium margin groups, and I want to show just the aggregate group for the low margin, I could be wrong, but I don't think that dax pattern allows some data to be grouped but other to not be grouped. 

 

Thanks,

Scott

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors