Hide column button action

Hello to all.
I need advice for my APP.
based on a selection in an enum column I would like to hide action buttons and columns.
Which is the best way?
insert formulas on each column and action button or can I use the USERSETTINS function?

1 2 280
2 REPLIES 2

Ill often make a dropdown enum column for a detail views with options like
‘General Info’
‘Job Scope’
‘Assigned Technicians’

and then I’ll add a Show If for each of the the related columns/Actions like:

    OR(
    CONTEXT("View")<>WorkOrder_Detail,
    AND(CONTEXT("View")=WorkOrder_Detail,[ShowDropdown]=General Info)
    )

Thanks for your reply but I didn’t understand correctly

Top Labels in this Space