Forum Discussion
Distinct count for completed requests & completed requests <> failure or error status
- Complete
- Failure
- System error
- Validation level1
- Validation level 2
- Cancelled
How can i please create the new measure or column ? or any other approach i can use ?
Please let me know if you need additional infos.
Best,
Mous
Hi Mous007
it is always a good idea to provide some sample data, or sample file, when you post a question. You will get a more accurate answer, and usually users of this forum is quicker at replying posts with sample data.
You can try something like this:
Number of requests with Complete status without failures = VAR _allComplete = CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', 'Full History Table'[STATUS] = "Complete" ) ) VAR _withFailures = CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', NOT ( ISBLANK ( Failure ) ) ) ) VAR _withoutFailures = EXCEPT ( _allComplete, _withFailures ) RETURN COUNTROWS ( _withoutFailures )You will probably have to change this statement, since I don't know how a failure is described:
CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', NOT ( ISBLANK ( Failure ) ) ) )Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
2 Replies
- sturlaws
Resident Rockstar
Hi Mous007
it is always a good idea to provide some sample data, or sample file, when you post a question. You will get a more accurate answer, and usually users of this forum is quicker at replying posts with sample data.
You can try something like this:
Number of requests with Complete status without failures = VAR _allComplete = CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', 'Full History Table'[STATUS] = "Complete" ) ) VAR _withFailures = CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', NOT ( ISBLANK ( Failure ) ) ) ) VAR _withoutFailures = EXCEPT ( _allComplete, _withFailures ) RETURN COUNTROWS ( _withoutFailures )You will probably have to change this statement, since I don't know how a failure is described:
CALCULATETABLE ( VALUES ( 'Full History Table'[TRACKING_NUMBER] ), FILTER ( 'Full History Table', NOT ( ISBLANK ( Failure ) ) ) )Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.- Mous007
Helper IV
Hi sturlaws, thank you for your reply.
I managed to get the expected results by modfiying the forumla as follow:
VAR _withFailures =CALCULATETABLE (VALUES ( 'Full History Table'[TRACKING_NUMBER] ),FILTER ( 'Full History Table', OR( 'Full History Table'[STATUS] = "Validation Failed", 'Full History Table'[STATUS] = "IFACE error")))Thanks again for the huge help sturlawsBest,
Mous