Forum Discussion
JSR
5 years agoHelper II
Get data from Filtered rows
Hi, A bit lost on how best get data from specific rows so looking for any advice, thanks. Having a table like below. I would like to get specific filtered rows and display its info int...
amitchandak
5 years agoSuper User
JSR , Try a measure like
measure =
var _date = today() //selectedvalue(date[date])
return
calculate(counrows(Table), filter(Table, table[start date]<=_date && Table[end date]>= _date))
JSR
5 years agoHelper II
Thanks amitchandak
but I dont think a measure will work, I need to display diferrent coulumns of the row.