Forum Discussion
YTD DistinctCount not totaling correctly
- 1 year ago
Hi,
The problem is in Feb. The # adds upto 426 though it should add up to 427. It means that there is a member being considered both in new and old in that month itself. Check your data. Make the corrections mentioned in my previous post.
Hi there, thanks for the support. However, I do need it to be additive and incrementally add each month for YTD. Like an Excel spreadsheet would incrementally add each tab/month data to the next. The solution you have provided gives me 1,064 Total for April YTD # which is incorrect.
The distinct count Total for April YTD # column should be 1,817.
Existing HELOC = 1,679
New HELOC = 138
Details below for reference:
Jan Total = 451
Existing HELOC = 421
New HELOC = 30
Feb Total = 427
Existing HELOC = 393
New HELOC = 34
Mar Total = 441
Existing HELOC = 395
New HELOC = 46
Apr Total = 498
Existing HELOC = 470
New HELOC = 28
April YTD # Column Total: 451 + 427 + 441 + 498 = 1,817
Please advise. Thank you for all your help!
Hi,
The problem is in Feb. The # adds upto 426 though it should add up to 427. It means that there is a member being considered both in new and old in that month itself. Check your data. Make the corrections mentioned in my previous post.
- mclawler1 year agoHelper III
Doing an additional measure over each monthly, YTD, YoY, YoYTD measure with the below template gave me the exact totals I was looking for. So I believe it is now doing a SumX for each month, and a SumX for each Row, which works perfectly.
Measure = SUMX(VALUES(Heloc3MonthAdvances[Existing/New]),[MemberNumberYTD DISTINCTCOUNT])
Thank you!!!!!
- Ashish_Excel1 year agoSolution Supplier
You are welcome.