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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
anoomohan
Helper II
Helper II

Error while adding month

Please help me with below error. 

 

I am getting this while trying to add month value from Data table to the matrix chart - which contains list of salesman in rows and some measured totals in 3 colums

 

 

 

anoomohan_0-1711807401066.png

 

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

Hi anoomohan,

The Number and Multiple arguments must have the same sign (+/-).
Please check the CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year]=2023) part of [2023 SALES B4] for negative numbers.

Use MROUND ( number, SIGN ( number ) * multiple ) if the the sign of the number is not known in advance:

2023 SALES B4 =
VAR __m = CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year]=2023)
VAR __result = MROUND(__m,SIGN(__m)*1000)
RETURN
__result 

Best Regards,
Gao
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly--How to provide sample data in the Power BI Forum--China Power BI User Group

View solution in original post

5 REPLIES 5
anoomohan
Helper II
Helper II

If if correct the desktop file, do i need to republish in service for this measure to be updated?

anoomohan
Helper II
Helper II

Thank you, it works this way!

v-cgao-msft
Community Support
Community Support

Hi anoomohan,

The Number and Multiple arguments must have the same sign (+/-).
Please check the CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year]=2023) part of [2023 SALES B4] for negative numbers.

Use MROUND ( number, SIGN ( number ) * multiple ) if the the sign of the number is not known in advance:

2023 SALES B4 =
VAR __m = CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year]=2023)
VAR __result = MROUND(__m,SIGN(__m)*1000)
RETURN
__result 

Best Regards,
Gao
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly--How to provide sample data in the Power BI Forum--China Power BI User Group

anoomohan
Helper II
Helper II

Below are the 3 measures used in same report - but no error for 2nd and 3rd, not sure why only the first one shows error - 
 
2023 SALES B4 = MROUND(CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year]=2023),1000)
 
2024 TGT AFT TR = MROUND(CALCULATE(SUM('AFTER TRANSFER'[Value]), 'DATE'[Year] = 2024),1000)
 
2024 TGT B4 TR = MROUND(CALCULATE(SUM('BEFORE TRANSFER'[Value]), 'DATE'[Year] = 2024),1000)
Fowmy
Super User
Super User

@anoomohan 

 

It seems your measure [2023 Sales B4] has an issue when you use the MROUND function. check the parameter value you have sed there. Here is the guide: MROUND function (DAX) - DAX | Microsoft Learn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.