Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
There is a concept of LOD in Tableau.What's the similar concept in PowerBI. I want to fix at certain level of Detail.
The Query used in Tableau is :- { fixed [Filedate] : COUNTD([Agreementid]) }.Whats the DAX Query in Power BI?
Solved! Go to Solution.
Hi @vksk0338 ,
You can create a measure as below to get the same result in Power BI with the one( { fixed [Filedate] : COUNTD([Agreementid]) }) in Tableau.
Count Distinct Agreementid by Filedate =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Agreementid] ),
ALLEXCEPT ( 'Table', 'Table'[Filedate] )
)
Best Regards
Hi @vksk0338 ,
You can create a measure as below to get the same result in Power BI with the one( { fixed [Filedate] : COUNTD([Agreementid]) }) in Tableau.
Count Distinct Agreementid by Filedate =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Agreementid] ),
ALLEXCEPT ( 'Table', 'Table'[Filedate] )
)
Best Regards
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |