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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Distinct values in in each category bin, based on countrows

Hi all, 

I am struggling to translate a calculated column into a measure - not sure if it's even possible (?).

 

I have a dataset, with two relevant columns: AccountNo, and InvoiceNo

I want to create a histogram using the bins in a secondary 'bins' table, where its value depend on how many distinct InvoiceNo fits into each 'bin' - based on the number of rows (countrows) there are for the given InvoiceNo in the data table. 

Here's the catch: it must be possible to change the result by slicing the AccountNo field (or any other column from the data table). 

 

I can produce the desired result using a calc. table and summarize (see downloadable sample). Essentially, I am trying to reproduce the calc. table into a measure - so it can interact with filters. 

 

Sample .pbix can be found here (OneDrive): https://1drv.ms/u/s!AkOYJVjp7_Dk3RS87Zb1yMe7-UJM

Details are in the picture below 

PowerBI DAX.png

 

Any help or guidance is greatly appreciated. 

1 ACCEPTED SOLUTION
avanderschilden
Resolver I
Resolver I

Hi Oklande,

 

Try this one;

 

Measure =
CALCULATE (
COUNTROWS (
FILTER (
ADDCOLUMNS (
SUMMARIZE ( Data, Data[InvoiceNo] ),
"Rows", CALCULATE ( COUNTROWS ( Data ), Data[InvoiceNo] = EARLIER ( Data[InvoiceNo] ) )
),
COUNTROWS (
FILTER (
CategoryBins,
[Rows] >= CategoryBins[From]
&& [Rows] <= CategoryBins[To]
)
) > 0
)
)
)

 

Let me know what you think about it.

 

Regards,

 

Adrian

View solution in original post

1 REPLY 1
avanderschilden
Resolver I
Resolver I

Hi Oklande,

 

Try this one;

 

Measure =
CALCULATE (
COUNTROWS (
FILTER (
ADDCOLUMNS (
SUMMARIZE ( Data, Data[InvoiceNo] ),
"Rows", CALCULATE ( COUNTROWS ( Data ), Data[InvoiceNo] = EARLIER ( Data[InvoiceNo] ) )
),
COUNTROWS (
FILTER (
CategoryBins,
[Rows] >= CategoryBins[From]
&& [Rows] <= CategoryBins[To]
)
) > 0
)
)
)

 

Let me know what you think about it.

 

Regards,

 

Adrian

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.