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
NickProp28
Post Partisan
Post Partisan

Total value in the table/ card does not tally

Dear Community,

 

The code below works fine to sort the new customer, however the total sum for February does not match. The total should be '5' .

New Customers = //Cus
VAR CustomerTM = VALUES(Customer[Client])
VAR PriorCustomer = CALCULATETABLE(VALUES(Customer[Client]),
FILTER(ALLEXCEPT(Customer,Customer[Branch]),
'Customer'[ETD] > Min('Customer'[ETD] ) - Parameter[Parameter Value] && 'Customer'[ETD] < MIN('Customer'[ETD])))
return
COUNTROWS(
EXCEPT(CustomerTM,PriorCustomer))

NickProp28_0-1657776333573.png

After looking into it for so many days, I still have no clue about it..
What are the most common issues that cause this problem and how do I fix it ?

 

Appreciate any help you can provide.
Thank you!

Attached with the pbix: https://drive.google.com/file/d/1SVBM5Tqizqq3pBHl10fwcLV-l7LbwhS7/view?usp=sharing

1 ACCEPTED SOLUTION

Hi @NickProp28 ,

Please refer to the pbix file to see if it helps you.

Create a measure based on the New Customersw.

Measure = var _b=SUMMARIZE(Append1,Append1[Client],"aaa",[New Customersw])
return
IF(HASONEVALUE(Append1[Client]),Append1[New Customersw],SUMX(_b,[aaa]))

vpollymsft_0-1658129016589.png

Please refer to the blog about the total issues.

Dealing with Measure Totals 

 

Best Regards
Community Support Team _ Polly

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-rongtiep-msft
Community Support
Community Support

Hi @NickProp28 ,

I cannot open the pbix file, could you please upload it again? Then provide more details with your desired output. 

Sensitive information can be removed in advance. 

 

Best Regards
Community Support Team _ Polly

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

Dear @v-rongtiep-msft ,
Good day!

This measure counts new customers who haven't purchased anything in the past 180 days (parameter set to 180 day, half year) and filtering by branch, year-month, and parameter.

New Customersw = //Cus
VAR CustomerTM = VALUES(Append1[Client])
VAR PriorCustomer = CALCULATETABLE(VALUES(Append1[Client]),
FILTER(ALLEXCEPT(Append1,Append1[Branch]),
'Append1'[ETD] > Min('Append1'[ETD] ) - Parameter[Parameter Value] && 'Append1'[ETD] < MIN('Append1'[ETD])))
return
COUNTROWS(
EXCEPT(CustomerTM,PriorCustomer))

Nevertheless, on February 2022 'ZZZ' branch, the table shows had total 5 clients, yet there are only 4.

NickProp28_0-1658126963980.png


Expected outcome: According to my current report, I also have 5 clients as shown in the BI table. 
Attached with pbix: https://drive.google.com/file/d/1UHVAtB7mDVKfA0WUMSbE0rNBqJHZbKBY/view?usp=sharing

Thank you!

Hi @NickProp28 ,

Please refer to the pbix file to see if it helps you.

Create a measure based on the New Customersw.

Measure = var _b=SUMMARIZE(Append1,Append1[Client],"aaa",[New Customersw])
return
IF(HASONEVALUE(Append1[Client]),Append1[New Customersw],SUMX(_b,[aaa]))

vpollymsft_0-1658129016589.png

Please refer to the blog about the total issues.

Dealing with Measure Totals 

 

Best Regards
Community Support Team _ Polly

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

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.