I wanted to ask for your advice on a problem using parameters in calculated fields within a table.
I built a table, that given a number of grouped columns, it averages the value of one of the columns on the right side of the table, given a specific Job ID.
Additionally, I want to implement a feature, whereby the user can select a different Job ID and compare the average value for that row side-by-side, as shown:
How could I implement this feature? Specifically what calculated value would I need so that the table would output the average value for the Job ID that the user selected, not the Job ID present in the table row?
When you say that you want to compare the selected Job ID side by side, do you mean you want to compare it against another unique Job ID to compare their averages?
If so you could try a drop down list selection so that you choose the Job ID’s that you want to compare and the table will filter out all other rows.
Sorry, I should’ve clarified. I already have a drop-down, I need a calculated field that can calculate the average of a column, given the selected job ID from that drop down and add it alongside the existing data.
In essence, for every row in the data (so not unique job IDs), I want to compare the average of a column, that has a different Job ID (from the drop-down)
Do you know I could write this calculated field? Thanks!