The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. 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" )
)
User | Count |
---|---|
69 | |
64 | |
63 | |
54 | |
28 |
User | Count |
---|---|
112 | |
81 | |
65 | |
48 | |
43 |