cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
jeanso
Frequent Visitor

VIEW REQUESTS STATUS

HELLO, GUYS.
I NEED TO DISPLAY THE QUANTITY OF REQUESTS BY STATUS, AS IT IS IN THE TABLE, A REQUEST CAN HAVE MORE THAN ONE PIECE AND IF ONLY ONE OF THEM IS APPROVED I NEED IT TO SHOW ME THE PARTIAL APPROVED STATUS, IF ALL FAIL THEN FAILED IF ALL APPROVED THEN APPROVED, I STOPPED AT THE POINT WHERE A REQUEST CAN HAVE MORE THAN ONE LINE, THUS IT IS DIFFICULT TO COUNT DIFFERENT IF IT HAD ONLY ONE LINE, I THOUGHT OF USING INDEX TO SOLVE IT BUT IT ENDED UP NOT WORKING AS WELL AS I EXPECTED, CAN YOU HELP ME WITH THIS, PLEASE.

jeanso_0-1676491024414.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jeanso ,

a new column =

var _cnt = countx(filter(Table, [request] =earlier( [request]) ), [request])

var _cntA = countx(filter(Table, [request] =earlier( [request]) && [Status]="Approved" ), [request])

return

if(_cnt =_cntA , "Approved", "Partially Approved")

 



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@jeanso ,

a new column =

var _cnt = countx(filter(Table, [request] =earlier( [request]) ), [request])

var _cntA = countx(filter(Table, [request] =earlier( [request]) && [Status]="Approved" ), [request])

return

if(_cnt =_cntA , "Approved", "Partially Approved")

 



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors