Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have the following table:
I need to return just one value from the column "Total de Horas" based on the criteria of the column "workdays.data.shift_appointments". E.g.: I need to return the value related to 8:00 hours. Please, how could I do this?
PS: All values are formatted according to Brazilian Portuguese Standard
Solved! Go to Solution.
Try
Selected total hours =
CALCULATE (
MIN ( 'Table'[Total de horas] ),
KEEPFILTERS ( 'Table'[workdays.data.shift_appointments] = "08:00" )
)
Try
Selected total hours =
CALCULATE (
MIN ( 'Table'[Total de horas] ),
KEEPFILTERS ( 'Table'[workdays.data.shift_appointments] = "08:00" )
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
26 |
User | Count |
---|---|
95 | |
50 | |
43 | |
40 | |
35 |