I'm trying to track which users are granted access to various systems. What I would like to do is to have one grid which lists all the System IDs (and various properties as columns) with one system per row, and a unique System ID for each system.
Then I would like a grid that lists each user as a row, and the column headers are the unique System IDs. When a user is given access the cell for that system indicates the access type. (User, admin, etc.) This is simple if manual, but manual means errors will occur.
So I want to take a user access form, which, after approvals, will update the appropriate instrument column for the user. Since the user access form would have the System ID in it (dropdown, kept updated by data shuttle), it has the correct value for the column. Here's where I get stuck though - how can I convert this value to a column reference and automatically populate the target cell with, say, "User"? It seemed like it would be an easy thing to do, but…