The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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" )
)
User | Count |
---|---|
85 | |
84 | |
36 | |
34 | |
32 |
User | Count |
---|---|
93 | |
79 | |
66 | |
55 | |
52 |