Record ID | Name | Value | Prob | Prob2 |
1 | 0 | A1 | 0.1 | 0.1 |
1 | 1 | |||
1 | 2 | |||
2 | 0 | A2 | 0.2 | 0.04 |
2 | 1 | A2 | 0.2 | |
2 | 2 |
The output is Prob 2 which is the product of every Prob grouping by recordID
The data is group by RecordID mainly so I need to find the product of Value of each Record ID.
May I know how can I achieve this output?
Sorry if the question is not clear enough.
multi-row-formula - new column (I called it product in the example)
group by record-id.
Your basic formula is something like:
if [Row-1:Record ID]!=null() then [Value]*[Row-1:product] else [Value] endif
Note - this is set up for "values for rows that don't exist = null()" - not = 0
User | Count |
---|---|
19 | |
15 | |
13 | |
9 | |
8 |