Hi everyone! I'm trying to figure out how to map a field name dynamically to a column of a table. as it stands the table looks like this: twomonth_value onemonth_value current_value 5 3 1 I want the output to be instead.. july_value august_value september_value 5 3 1 I am able to get the correct dynamic value of each month via | eval current_value = strftime(relative_time(now(), "@mon"), "%B")+."_value" However, i'm unsure on how to change the field name directly in the table. Thanks in advance!
... View more