Forum Discussion
strachi
8 years agoRegular Visitor
Moving average over non-numeric values (correct errors, fill missing values)
Hi, how can I smooth string values in a column? I have time series data (timestamp; string) with some errors or gaps in it: timestamp;string 1521585642;a 1521585643;a 1521585644; 1521585...
strachi
8 years agoRegular Visitor
Sorry to push here... any ideas? v-jiascu-msft
strachi
8 years agoRegular Visitor
I am trying to use this to narrow down the strings in proximity to the data gap...
FILTER(Table1;Table1[Index]<=EARLIER(Table1[Index])+1 && Table1[Index]>=EARLIER(Table1[Index])-1)
I guess this could help me I do not succeed in putting it together in a calculated column:
Most Frequent String =
FIRSTNONBLANK (
TOPN (
1;
VALUES ( Table1[string] );
RANKX( ALL( Table1[string] ); COUNTROWS(Table1);;ASC)
);
1
)Anyone?