Forum Discussion
Thomas94401
Helper I
2 years agoPower BI Button
Hello ! I have a rather specific question about the Power BI buttons. I have a first visual where I have to select a customer. I have a measure that calculates the customer's headcount. I've added ...
parry2k
Super User
2 years agoThomas94401 yes you can, create a measure for navigation:
Goto Page Measure =
VAR __Headcount = [Head Count Measure]
VAR __PageName = "Your Page Name"
RETURN
IF ( __Headcount > 100, __PageName )
in the destination under action by clicking the fx button, assign the above measure.