To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello, I have a file with contracts that are categorized by status as either expired, active or future based on the valid from and valid to dates. I want to add a Renewal Status column that checks unique contract numbers and lets me know that contract number has a future contract associated with it or not like the output example below.
Thank you in advance
Input
Output Column is Renewal Status column
Solved! Go to Solution.
emmmmmmmm.
add colnum
index =
switch(true(),
[Status]="Expired",1,
[Status]="Avtive",2,
[Status]="Furture",3,
0
)
add colnum
Renewal Status=
If(calculate(max(index),allexpert(table, table[Contract #])=3,
"Future contract exists",
"Futrue contract does not exist"
)
emmmmmmmm.
add colnum
index =
switch(true(),
[Status]="Expired",1,
[Status]="Avtive",2,
[Status]="Furture",3,
0
)
add colnum
Renewal Status=
If(calculate(max(index),allexpert(table, table[Contract #])=3,
"Future contract exists",
"Futrue contract does not exist"
)
Thank you, that worked!!
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |