Forum Discussion
Anonymous
6 years agoNot applicable
random sampling
[ Spoiler ] How to take number of rows as input and show random set of rows ?
Anonymous
6 years agoNot applicable
check it out here
https://community.powerbi.com/t5/Desktop/DAX-random-sample/td-p/386571
Random Selection =
VAR SampleSize = 10
VAR TableWithRand = ADDCOLUMNS ( OriginalTable, "Rand", RAND () )
RETURN TOPN ( SampleSize, TableWithRand, [Rand] )
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
Anonymous
6 years agoNot applicable
how to take row count from users?