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
Corey-Flinders
Frequent Visitor

Approach to generate a sample of records for each group of records in a table

Hi All,

 

I have a table that contains data for years 2005 to 2018. I need to generate a sample of records for each year in the table. My working DAX expression looks like this:

 

Sample Table = UNION(
    SAMPLE(
        10,
        FILTER('Consolidated Data', AND('Consolidated Data'[Year Commenced] = 2005, ISBLANK('Consolidated Data'[Year Completed]) = FALSE)),
        'Consolidated Data'[Student ID]
    ),
    SAMPLE(
        10,
        FILTER('Consolidated Data', AND('Consolidated Data'[Year Commenced] = 2006, ISBLANK('Consolidated Data'[Year Completed]) = FALSE)),
        'Consolidated Data'[Student ID]
    ),
    SAMPLE(
        10,
        FILTER('Consolidated Data', AND('Consolidated Data'[Year Commenced] = 2007, ISBLANK('Consolidated Data'[Year Completed]) = FALSE)),
        'Consolidated Data'[Student ID]
    )
)

While this approach works, it feels wrong. I'm copying and pasting each call to the SAMPLE function and only changing the filter, and then using the UNION function to consolidate the returned records together into a single table.

 

Does anyone have any suggestions for an alternative approach?

 

With thanks.

 

-Corey

1 ACCEPTED SOLUTION
d_gosbell
Super User
Super User

You could use a pattern like the following to avoid duplicating code, you then just add to the list of years that you are generating over (or you could use the GENERATESERIES() function to generate a continuous list of years)

 

Sample Table = 
SELECTCOLUMNS(
	GENERATE( {2005,2006,2007},
		SAMPLE(
			10,
			FILTER('Consolidated Data', AND('Consolidated Data'[Year Commenced] = [VALUE], ISBLANK('Consolidated Data'[Year Completed]) = FALSE)),
			'Consolidated Data'[Student ID]
		)
	)
	, "Student ID"
	,[Student ID]
)

View solution in original post

1 REPLY 1
d_gosbell
Super User
Super User

You could use a pattern like the following to avoid duplicating code, you then just add to the list of years that you are generating over (or you could use the GENERATESERIES() function to generate a continuous list of years)

 

Sample Table = 
SELECTCOLUMNS(
	GENERATE( {2005,2006,2007},
		SAMPLE(
			10,
			FILTER('Consolidated Data', AND('Consolidated Data'[Year Commenced] = [VALUE], ISBLANK('Consolidated Data'[Year Completed]) = FALSE)),
			'Consolidated Data'[Student ID]
		)
	)
	, "Student ID"
	,[Student ID]
)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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.

Top Solution Authors
Top Kudoed Authors