I have a query which is a lookup and I have assigned the out to "Report" as I want to send the entirety of the report via teams but im struggling to send it as a table its just the entire and its not readable. here's the output in teams and this is my query index="acoe_bot_events" unique_id = * |lookup "LU_ACOE_RDA_Tracker" ID AS unique_id |search Business_Area_Level_2="Client Solutions Insurance" , Category="*", Business_Unit = "*", Analyst_Responsible = "*", Process_Name = "*" |eval STP=(passed/heartbeat)*100 |eval Hours=(passed*Standard_Working_Time)/60 |eval FTE=(Hours/127.5) |eval Benefit=(passed*Standard_Working_Time*Benefit_Per_Minute) |stats sum(heartbeat) as Volumes sum(passed) as Successful avg(STP) as Average_STP,sum(FTE) as FTE_Saved, sum(Hours) as Hours_Saved, sum(Benefit) as Rand_Benefit by Process_Name, Business_Unit, Analyst_Responsible |foreach * [eval FTE_Saved=round('FTE_Saved',3)] |foreach * [eval Hours_Saved=round('Hours_Saved',3)] |foreach * [eval Rand_Benefit=round('Rand_Benefit',2)] |foreach * [eval Average_STP=round('Average_STP',2)] | eval row = Process_Name . "|" . Analyst_Responsible . "|" . Business_Unit . "|" . Volumes . "|" . Successful . "|" . Average_STP | stats values(row) AS report | eval report = mvjoin(report, " ")
... View more