Hi All,
I have some data as the following:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD="align: center"][/TD]
[TD="align: center"]P[/TD]
[TD="align: center"]R[/TD]
[TD="align: center"]T[/TD]
[TD="align: center"]V[/TD]
[TD="align: center"]X[/TD]
[/TR]
[TR]
[TD="align: center"][/TD]
[TD="align: center"]Salary[/TD]
[TD="align: center"]Rise (1)[/TD]
[TD="align: center"]Rise (1) Date[/TD]
[TD="align: center"]Rise (2)[/TD]
[TD="align: center"]Rise (2) Date[/TD]
[/TR]
[TR]
[TD="align: center"]90[/TD]
[TD="align: center"]10[/TD]
[TD="align: center"]20[/TD]
[TD="align: center"]March 17, 2018[/TD]
[TD="align: center"]30[/TD]
[TD="align: center"]March 19, 2018[/TD]
[/TR]
</tbody>[/TABLE]
What I want is when X90 is > T90 then V90 should be the TRUE value and R90 should be the FALSE value, and when T90 is >= Today's date then R90 should be the TRUE value, otherwise all of that the value should be P90 ...
below the best I've got so far :
but unfortunately, it ends up in #VALUE ! error .
Any Suggestions ?
Regards,
Mohamed El-Ghareeb
I have some data as the following:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD="align: center"][/TD]
[TD="align: center"]P[/TD]
[TD="align: center"]R[/TD]
[TD="align: center"]T[/TD]
[TD="align: center"]V[/TD]
[TD="align: center"]X[/TD]
[/TR]
[TR]
[TD="align: center"][/TD]
[TD="align: center"]Salary[/TD]
[TD="align: center"]Rise (1)[/TD]
[TD="align: center"]Rise (1) Date[/TD]
[TD="align: center"]Rise (2)[/TD]
[TD="align: center"]Rise (2) Date[/TD]
[/TR]
[TR]
[TD="align: center"]90[/TD]
[TD="align: center"]10[/TD]
[TD="align: center"]20[/TD]
[TD="align: center"]March 17, 2018[/TD]
[TD="align: center"]30[/TD]
[TD="align: center"]March 19, 2018[/TD]
[/TR]
</tbody>[/TABLE]
What I want is when X90 is > T90 then V90 should be the TRUE value and R90 should be the FALSE value, and when T90 is >= Today's date then R90 should be the TRUE value, otherwise all of that the value should be P90 ...
below the best I've got so far :
Code:
=IF(X90>T90,V90,R90),IF(T90>=TODAY(),R90,P90)
but unfortunately, it ends up in #VALUE ! error .
Any Suggestions ?
Regards,
Mohamed El-Ghareeb