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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dofrancis3
Helper I
Helper I

Pourcentage and latest date

Hello Guys!

Please i need your help

I would like to calculate and display the vaccination percentage for only the latest date for each count

Below exemple of my data

dofrancis3_0-1710500832602.png

 

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

Hi @dofrancis3 ,
Thanks for the new data, here are my changes to the second MEASURE:

Percentage = 
CALCULATE(
    MAX('Table'[Number of vaccinated]),
    FILTER(
        'Table',
        SELECTEDVALUE('Table'[Date of vaccination]) = [LastDate]
    )
)

Final output

vheqmsft_0-1710811031372.png

 

Best regards,

Albert He

 

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

5 REPLIES 5
v-heq-msft
Community Support
Community Support

Hi @dofrancis3 ,
Thanks for the new data, here are my changes to the second MEASURE:

Percentage = 
CALCULATE(
    MAX('Table'[Number of vaccinated]),
    FILTER(
        'Table',
        SELECTEDVALUE('Table'[Date of vaccination]) = [LastDate]
    )
)

Final output

vheqmsft_0-1710811031372.png

 

Best regards,

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

v-heq-msft
Community Support
Community Support

Hi @dofrancis3 ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1710739357329.png

Create two dax

LastDate = 
CALCULATE(
    MAX('Table'[Date of vaccination]),
    ALLEXCEPT(
        'Table',
        'Table'[Country]
    )
)
Percentage = 
VAR _number = 
CALCULATE(
    MAX('Table'[Number of vaccinated]),
    FILTER(
        'Table',
        SELECTEDVALUE('Table'[Date of vaccination]) = [LastDate]
    )
)
VAR SumByCountry = 
CALCULATE(
    SUM('Table'[Number of vaccinated]),
    ALLEXCEPT(
        'Table',
        'Table'[Country]
    )
)
RETURN
_number / SumByCountry

Final output

vheqmsft_1-1710739436723.png

Best regards,

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

lbendlin
Super User
Super User

Do you want to do that in DAX or in Power Query?

 

 

Hi Guys!

I would like to extract (display) the percentage of vaccination for the latest date for each country.

Please the screen below:

dofrancis3_1-1710780304797.png

 

 

You can do that with grouping in Power Query

 

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information or anything not related to the issue or question.

If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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