Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
MachisukiJ
Helper I
Helper I

i need to take the results of the entire table by using an text column as the base

good morning to y'all, i need help to discover if is there a way to remove an specific value out of an column to be able to filter what will be counted, it is an time based calculation that will be turned into an percentage graph, but in order to get there i need to filter two diferent results, the first being the percentage of co orders and the second result the sum of cp,pr and ou, the example print is right there .

MachisukiJ_0-1681222886615.png

since now thanks for your help !! 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @MachisukiJ 

try like:

percentage of co =
DIVIDE(
    CALCULATE(
       SUM(TableName[Value]),
       TableName[TIP]="CO"
    ),
   CALCULATE(
       SUM(TableName[Value]),
       ALL(TableName[TIP])
    )
)
 
sum of cp pr and ou =
CALCULATE(
       SUM(TableName[Value]),
       TableName[TIP] IN {"cp", "pr", "ou"}
)
 

View solution in original post

4 REPLIES 4
FreemanZ
Super User
Super User

hi @MachisukiJ 

try like:

percentage of co =
DIVIDE(
    CALCULATE(
       SUM(TableName[Value]),
       TableName[TIP]="CO"
    ),
   CALCULATE(
       SUM(TableName[Value]),
       ALL(TableName[TIP])
    )
)
 
sum of cp pr and ou =
CALCULATE(
       SUM(TableName[Value]),
       TableName[TIP] IN {"cp", "pr", "ou"}
)
 

thank you really much for your help !!!

Rudy_D
Resolver I
Resolver I

Hi,

 

To obtain both results, you can use the measures below. I assume that you table is called 'Table'.

You have to convert the first one in %.

 
measure 1 = DIVIDE(CALCULATE(COUNT('Table'[TIPO O.S]), FILTER('Table', 'Table'[TIPO O.S] = "CO")), COUNT('Table'[TIPO O.S]), 0)
 
measure 2 = CALCULATE(COUNT('Table'[TIPO O.S]), FILTER('Table', 'Table'[TIPO O.S] = "CP" || 'Table'[TIPO O.S] = "PR" || 'Table'[TIPO O.S] = "OU"))
 
Tell me if it's ok for you.
 
Rudy

your measures worked pretty well, the result diverted just a little bit from what it should be, thank you really much !!

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.