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 277
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