Hi,
I am using ELK GA 5.0.0. I have managed to create a table like below;
---------------------------------------------
| User_Name | Sum_of_ColA | Sum_of_ColB |
-------------+---------------+---------------
| UserA | 20 | 10 |
| UserB | 15 | 3 |
---------------------------------------------
I have 2 fields in my index ColA and ColB.The 2 columns in my table shows sum of values in those fields. I have splitted rows using User_Name field.
I want to create another column, which is Sum_of_ColA/Sum_of_ColB
like below;
-------------------------------------------------------
| User_Name | Sum_of_ColA | Sum_of_ColB | Ratio |
-------------+---------------+--------------+----------
| UserA | 20 | 10 | 2 |
| UserB | 15 | 3 | 5 |
-------------------------------------------------------
Is this possible? Thanks in advance..