C
|
clig 1/18/2010 |
I have a filed called Valid as of Date. It will be a date manually entered showing the age of a document. I would like the view to be custom so that if the valued entered is two years old the cell color will be red. I have the below code but I am unsure of how to set it up so it checks for it to be two years old? str = "<table width=100% bgcolor="
|
C
|
clig 1/18/2010 |
I have a filed called Valid as of Date. It will be a date manually entered showing the age of a document. I would like the view to be custom so that if the valued entered is two years old the cell color will be red. I have the below code but I am unsure of how to set it up so it checks for it to be two years old? str = "<table width=100% bgcolor="
|
S
|
stealthwifi author 1/18/2010 |
sample filter for date = 2 years ago (DATEDIFF(year, dbo.NTSS_Tickets.DateEntered, GETDATE()) = 2) - adjust for language the sample is MSSQL
str = "<table width=100% bgcolor="
str = "<table width=100% bgcolor=" str = "<table width=100% bgcolor=" |
S
|
stealthwifi author 1/18/2010 |
I solved it, the correct way is below: str = "<table width=100% bgcolor=" |
C
|
clig 1/25/2010 |
I solved it, the correct way is below: str = "<table width=100% bgcolor="
|