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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

Calculation error in YTD due to duplicates

Hi Experts,

I have written the formula for ytd as below:

TotalGWPYTD = calculate(SUM ( PolBudget[Total Gross Premium] ), VALUE(PolBudget[Year]) = YEAR ( TODAY () ) )
and got the expected result, but there are some cases where i am getting duplicate values as below under UW type (second column) due to which the year instead of coming 2022 it is taking years in descending based on number of duplicate values:
Vaibhav_rathore_0-1659950315706.png

 

 

Please advise the solution either to remove the duplicates or to fix the year part.

 

Thanks

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

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1661317628723.png

Here are the steps you can follow:

1. Create measure.

Flag =
IF(
    MAX('PolBudget'[Year])=YEAR(TODAY()),1,0)
TotalGWPYTD =
SUMX(ALLSELECTED('PolBudget'),[Total Gross Premium])

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1661317628731.png

3. Result:

vyangliumsft_2-1661317628737.png

If you need pbix, please click here.

Calculation error in YTD due to duplicates.pbix

 

Best Regards,

Liu Yang

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

4 REPLIES 4
v-yangliu-msft
Community Support
Community Support

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1661317628723.png

Here are the steps you can follow:

1. Create measure.

Flag =
IF(
    MAX('PolBudget'[Year])=YEAR(TODAY()),1,0)
TotalGWPYTD =
SUMX(ALLSELECTED('PolBudget'),[Total Gross Premium])

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1661317628731.png

3. Result:

vyangliumsft_2-1661317628737.png

If you need pbix, please click here.

Calculation error in YTD due to duplicates.pbix

 

Best Regards,

Liu Yang

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

amitchandak
Super User
Super User

@Anonymous , try like

TotalGWPYTD = calculate(SUM ( PolBudget[Total Gross Premium] ), Filter(PolBudget, PolBudget[Year]) = YEAR ( TODAY () ) )

 

 

refer if needed

https://medium.com/chandakamit/cheat-sheet-power-bi-time-intelligence-formulas-using-today-654f26e27304

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @amitchandak 

I am getting this error:

Vaibhav_rathore_0-1660030156549.png

Thanks

 

Dinesh_Suranga
Continued Contributor
Continued Contributor

@Anonymous ,

Please check the data type of PolBudget[Year].

Thank you.

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors
Top Kudoed Authors