Hi, can anybody help, please?
Description of very simple problem
| makeresults
| eval tmp1=1, tmp2=1
| table tmp1, tmp2
How to add new event based on values of tmp1, tmp2?
Expected results
2 rows\2events
1 row: tmp1=1, tmp2=1
2 row: tmp1=tmp1+1, tmp2=tmp2*5
Is this what you are looking for,
| makeresults
| eval tmp1=1, tmp2=1
| table tmp1, tmp2
| appendpipe [
| eval tmp1=tmp1+1, tmp2=tmp2*5
]
Regards,
Prewin
If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!
Is this what you are looking for,
| makeresults
| eval tmp1=1, tmp2=1
| table tmp1, tmp2
| appendpipe [
| eval tmp1=tmp1+1, tmp2=tmp2*5
]
Regards,
Prewin
If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!
Easy, fast, solved. Thank you very much PrewinThomas. Great.