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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Pass measure value to a dax function variable

I have a what - if-parameter :

 

Vals = GENERATESERIES(1, COUNTA(Sale[Row ID]), 1)
Count = SELECTEDVALUE('Table 1'[Vals])
 
Now the data in count needs to be passed to var size of below dax function .. how is that possible
 
Rand Function Table =
VAR Size = 12
VAR TableWithRand =
    ADDCOLUMNS ( Sales, "Rand", RAND () )
RETURN
    TOPN (Size, TableWithRand, [Rand] )

 

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @Anonymous 

if I understand you correct didnt you try simple

Rand Function Table =
VAR Size = SELECTEDVALUE('Table 1'[Vals])
VAR TableWithRand =
    ADDCOLUMNS ( Sales, "Rand", RAND () )
RETURN
    TOPN (Size, TableWithRand, [Rand] )


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

Thank you so much for the reply.Tried giving the same , but it wasn't working. 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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