I am using a condition to format a ROW.
ISNOTBLANK(
SELECT(Data Log[UniqueID], [Student ID]=[_THISROW].[Student ID])
)
The condition is applied to make a row look different:
I have created the first condition, but I am not sure how to add the second to the formula.
Help please 🙂
Solved! Go to Solution.
You would need to use the AND() expression to join conditions. Something like this:
ISNOTBLANK(
SELECT(Data Log[UniqueID],
AND(
[Student ID]=[_THISROW].[Student ID],
[Date] = TODAY()
)
)
)
You would need to use the AND() expression to join conditions. Something like this:
ISNOTBLANK(
SELECT(Data Log[UniqueID],
AND(
[Student ID]=[_THISROW].[Student ID],
[Date] = TODAY()
)
)
)
This worked like a charm! Thank you so much. 🙏
User | Count |
---|---|
18 | |
9 | |
8 | |
5 | |
5 |