Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
AR Days1 =
//CALCULATE([AR Days],FILTER('OLAP.Account','OLAP.Account'[Name]="AR"))
CALCULATE([AR Days],
FILTER (
'OLAP.CUBE',
RELATED ( 'OLAP.Account'[Name] ) = "AR"
))
This is the formula I use, after I make it the result is infinity.
I want to take the AR account value from the AR Days calculation,
how to make AR Days1 appear AR account with a value of 146?
Solved! Go to Solution.
Hi , @PTSS
You can try to use this dax in measure:
Measure=
var _Cur_name= VALUES('OLAP.CUBE'[Name])
return
IF("AR" in _Cur_name , [AR Days] , BLANK())
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @PTSS
You can try to use this dax in measure:
Measure=
var _Cur_name= VALUES('OLAP.CUBE'[Name])
return
IF("AR" in _Cur_name , [AR Days] , BLANK())
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |