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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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

Anonymous
Not applicable

Hi @amitchandak 

I am getting this error:

Vaibhav_rathore_0-1660030156549.png

Thanks

 

Dinesh_Suranga
Responsive Resident
Responsive Resident

@Anonymous ,

Please check the data type of PolBudget[Year].

Thank you.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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