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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
nadavbi
Helper I
Helper I

Continuous Dynamic Parameter

Is there a way to allow the end-user to choose any number and have column values change accordingly?

Let's say I have a ticket creation date. My default would be that within 30 days it should be responded, and if there are 7 days left, it should be marked under some kind of alert.

But I want the user to be able to change 30 days to whatever number of days he wishes (say 1-30). The same goes for the 7 days.

 

 

1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hi @nadavbi ,

 

We can create two What-If parameter first as following screenshot:

 

4.PNG3.PNG

 

Then we can create two measures to mark the ticket. We can also use them in the visual filter.

 

ResponedDay =
IF (
    DATEDIFF ( MAX ( 'Table'[Date] ), TODAY (), DAY ) < [ResponedDay Value],
    "Responed",
    BLANK ()
)

 

AlertMark = 
IF (
    DATEDIFF ( MAX ( 'Table'[Date] ), TODAY (), DAY ) < [AlertDay Value],
    "Alert",
    BLANK ()
)

 

5.PNG6.PNG

 


BTW, pbix as attached.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lid-msft
Community Support
Community Support

Hi @nadavbi ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lid-msft
Community Support
Community Support

Hi @nadavbi ,

 

We can create two What-If parameter first as following screenshot:

 

4.PNG3.PNG

 

Then we can create two measures to mark the ticket. We can also use them in the visual filter.

 

ResponedDay =
IF (
    DATEDIFF ( MAX ( 'Table'[Date] ), TODAY (), DAY ) < [ResponedDay Value],
    "Responed",
    BLANK ()
)

 

AlertMark = 
IF (
    DATEDIFF ( MAX ( 'Table'[Date] ), TODAY (), DAY ) < [AlertDay Value],
    "Alert",
    BLANK ()
)

 

5.PNG6.PNG

 


BTW, pbix as attached.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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