Forum Discussion
jk13
4 years agoFrequent Visitor
How to Lookup a value from a filtered table
Hi all, i have the following data structure tables: requests request_id name 1 james 2 rob 3 sam activities activity_id request_id event date 1 1...
- 4 years ago
Hi jk13 ,
Create column with below code:-
create date = CALCULATE( MAX(activities[date]), activities[event] = "CREATE" )Output:-
Thanks,
Samarth
Samarth_18
Community Champion
4 years agoHi jk13 ,
Create column with below code:-
create date =
CALCULATE(
MAX(activities[date]),
activities[event] = "CREATE"
)Output:-
Thanks,
Samarth