All
I think this is not working because I show a total in my "Status" and "Forecast Status" columns, but I'm not sure how to filter out that total because it is meaningless since it's a category.
Solved! Go to Solution.
Hi, @bo_wang5
If you want to remove these meaningless totals, you use IF +HASONEVALUE to replace the total value.
New_Forecast Status =
IF ( HASONEVALUE ( Data[ASO:Opportunity] ), [Forecast Status], BLANK () )
New Status =
IF ( HASONEVALUE ( Data[ASO:Opportunity] ), [Status], BLANK () )
New In forecast and won =
IF (
HASONEVALUE ( Data[ASO:Opportunity] ),
[In forecast and won],
SUMX ( VALUES ( Data[ASO:Opportunity] ), [In forecast and won] )
)
Best Regards,
Community Support Team _ Eason
Hi, @bo_wang5
If you want to remove these meaningless totals, you use IF +HASONEVALUE to replace the total value.
New_Forecast Status =
IF ( HASONEVALUE ( Data[ASO:Opportunity] ), [Forecast Status], BLANK () )
New Status =
IF ( HASONEVALUE ( Data[ASO:Opportunity] ), [Status], BLANK () )
New In forecast and won =
IF (
HASONEVALUE ( Data[ASO:Opportunity] ),
[In forecast and won],
SUMX ( VALUES ( Data[ASO:Opportunity] ), [In forecast and won] )
)
Best Regards,
Community Support Team _ Eason
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
202 | |
69 | |
66 | |
57 | |
55 |
User | Count |
---|---|
251 | |
218 | |
105 | |
74 | |
72 |