Forum Discussion
ap12
4 years agoFrequent Visitor
Column filter value
Hello, I'm looking to create a new column that shows only shows the value once if there are multiple rows with the same unique ID and filter. Here is the sample of the table: Cli...
- 4 years ago
ap12 , Create a new column
column =
var _min = minx(filter(Table, [client ID] = earlier([client id])), [Date Invoice])
return
if( [Contract Type] = "SUB" , if([Date Invoice] =_min, [Invoice], blank()),[Invoice])
amitchandak
4 years agoSuper User
ap12 , Create a new column
column =
var _min = minx(filter(Table, [client ID] = earlier([client id])), [Date Invoice])
return
if( [Contract Type] = "SUB" , if([Date Invoice] =_min, [Invoice], blank()),[Invoice])
- ap124 years agoFrequent Visitor
Thanks amitchandak. Your formula worked!!