Hi,
I need to hide the add action button if theres a register added today with the actual logged user (Usersettings)
For example, if the user1 is logged and theres a register in the table Class, then hide the action button.
Solved! Go to Solution.
@Suvrutt_Gurjar sorry to jump in , am just learning and would like to suggest an approach and I'd like your feedback:
@Yeyo1976 i would create a slice of the Class table to show today's records using this expression
AND(
[Email] = USERSETTINGS("Email"),
[Date] = TODAY()
)
This will display the records of today only
Then for a the action , show_If id use an expression :
NOT(
IN(USERSETTINGS("Email"),Todays_Record[Email])
)
I'd leave the judgment to our pro @Suvrutt_Gurjar
User | Count |
---|---|
18 | |
11 | |
7 | |
4 | |
3 |