Forum Discussion
king2005r
Helper III
4 years agoCheck the previous column value, with default status
Hi Everyone, I need your help, I have very sample request I want the formula to check if there any previous "active" orders for the same customer ID that has "Active" status so the final out...
- 4 years ago
All customers package deliver CC =
IF (
"Active"
IN SUMMARIZE (
FILTER ( Data, Data[Customer ID] = EARLIER ( Data[Customer ID] ) ),
Data[Status]
),
"Not yet",
"Yes"
)
Jihwan_Kim
Super User
4 years ago
All customers package deliver CC =
IF (
"Active"
IN SUMMARIZE (
FILTER ( Data, Data[Customer ID] = EARLIER ( Data[Customer ID] ) ),
Data[Status]
),
"Not yet",
"Yes"
)
king2005r
Helper III
4 years agoThank you so much, this is work fine 🙂 appreciated!