Conditional Action Button

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 Solved
1 6 233
1 ACCEPTED 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 

View solution in original post

6 REPLIES 6
Top Labels in this Space