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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Migration of Tableau LOD to Power bi

Hi All,

 

i need your help to build Dax using below Tableau Lod

 

% Doc count = [count Doc] / TOTAL([count Doc])

 

where "Count Doc" is distinct count of "docno"

 

Thanks in advance.

1 REPLY 1
Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

 

It would help us to give answer more specifically if you could share some sample data with required output.

You can try below code:-

% Doc count =
VAR distinct_count =
    CALCULATE ( DISTINCTCOUNT ( [count Doc] ) )
VAR total_count =
    CALCULATE ( COUNT ( [count Doc] ) )
RETURN
    DIVIDE ( distinct_count, total_count )

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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