If you want ALL fieldnames to be upper case, then do this at the end...
| streamstats count as recno
| untable recno fieldname fieldvalue
| eval fieldname = upper(fieldname)
| xyseries recno fieldname fieldvalue
| fields - recno
Be aware that the above code will turn multivalue fields to single value fields as if they had been nomv
ed. The following code will protect an mv field called "foo".
| streamstats count as recno
| eval foo = mvjoin(foo,"!!!!")
| untable recno fieldname fieldvalue
| eval fieldname = upper(fieldname)
| xyseries recno fieldname fieldvalue
| eval FOO = split(FOO,"!!!!")
| fields - recno
see if this helps you
| foreach * [| eval "uppered<<MATCHSTR>>"='<<MATCHSTR>>' ]
That's a way to get the dynamic column name thing solved.
I am guessing you want the column name to be renamed for the result of the search?
If that is the case you can pipe your search to
| rename column_name AS "your_new_name"
if you want to change the name of the field before doing calculations with the new name, you should use the eval command
| eval new_name=old_name
@asimagu Thanks for your reply but it didnt answer my query. I dont know the column name. it is created at run time.
| rename column_name AS "your_new_name". i want "your_new_name" to be like "COLUMN_NAME" - upper case of whatever is present in the column