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.
Hello- I'm trying to write a measure where I filter first by timesheet tasks, which is working, but then I also want to filter out the client numbers that start with a z. Any help appreciated.
[Hours ...] =
CALCULATE(
[Hours Worked], -- this should be your base measure
KEEPFILTERS(
'dw Timesheets'[Taks] in {...},
),
KEEPFILTERS(
-- Are you sure it's called ClientNumber?
LEFT('dw Clients'[ClientNumber], 1) <> "z"
)
)
User | Count |
---|---|
24 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |