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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
czuniga
Helper III
Helper III

Dynamic Parameter

I have a parameter I am trying to create in order to determine the revenue associated with a dynamic number of customers. This formula gives me all of the revenue rather than limiting it to the number of customers selected by the parameter. How would I fix this?

Top N =
   Calculate(sum([Rev]),
       TopN(Parameter Value, VALUES([Customer Rank]), sum([Rev]), ASC)
)

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @czuniga ,

 

We can create a measure as below to work on it.

Measure = 
VAR a =
    ADDCOLUMNS (
        'Table',
        "rank", RANKX ( ALL ( 'Table' ), 'Table'[value],, DESC, DENSE )
    )
RETURN
    SUMX ( FILTER ( a, [rank] <= Parameter[Parameter Value] ), 'Table'[value] )

Capture.PNG

 

Pbix as attached.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
FrankAT
Community Champion
Community Champion

Hi @czuniga ,

use the what-if parameter, see figure. It creates a new table with a measure. Insert this measure in your TopN measure.

 

31-03-_2020_00-32-59.png

 

Regards FrankAT

@FrankAT  That's what I'm using. I apologize if that wasn't clear. 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.