vote up 0 vote down star
2

Hi,

I have two columns C1 and C2, both of type date and time in a document library. Now i want to create a calculated column C3 using which i could know which column(C1 or C2) is having greater value. I tried following formula for calculated column IF(C1>C2, 1,0) it works perfectly fine, but if i replace C1 with 'Modified' column it doesnt seem to work. Please use different datetime values for C2 to get 1,0,1,0 in calculated column. I noticed that after 2-3 operations it remains either 1 or 0.

flag

75% accept rate

2 Answers

vote up 0 vote down

Update I've just tested this as follows:

Create List with 3 columns:

C1 - Date and Time    
C2 - Date and Time    
C3 - Calculated Column.

I configured the Calculated Column to return a Number and entered the following formula in:

=IF(c1>c2,1,0)

This worked perfectly.

If the Calculated Column should return Text (the default setting) then using the following formula worked:

=IF(c1>c2,"1","0")

Once again, this works perfectly for me.

link|flag
I have tested with square bracket but square brackets doesnt matter. – Anoop May 15 at 6:03
I've updated my answer having been able to test the solution – Temple May 15 at 8:15
Hi I am using 'Modified' column in place of column C1 in your example. In that case above formula doesnt work. I have also checked that if both column c1 and c2 are custom column, formula works perfecly. Is 'Modified' column is not of type 'Date and Time'? Can you please confirm the behaviour using 'Modified' column in place of C1(Please check for at least 3 differnt datetime values to reproduce the problem). – Anoop May 15 at 9:21
Hi, I've tried this and the following formula works for me: =IF(Modified > c2,1,0) I've tried this with several different values. Can you explain what you mean by "Please check for at least 3 different datetime values to reproduce the problem"? – Temple May 15 at 10:11
I dont know why am i getting this problem!!! The problem is only with Modified column. Its like Modified column value is 5/18/2009 9:00 AM and c2 column value is 5/17/2009 10:00 AM but calculated column c3 shows 0. Now if i change c2 to 5/19/2009 10:00 AM , still c3 shows 0. Do you have installed any service pack of Sharepoint services 2007?? I have not installed any service pack? please confirm ASAP. – Anoop May 18 at 4:51
vote up 0 vote down

I just verified that > and < do indeed work on dates.

=ISERROR(DATEDIF(C1,C2,"d"))

That will be true if C1 is less than C2.

link|flag
Thanks for the comments. =ISERROR(DATEDIF(C1,C2,"d")) Above is ok with Date only but what if date is same but time is different?? – Anoop May 15 at 6:08
LOL I know the text below sounds ridiculous but this is from the documentation... You could use it to convert the date to a number. -- To convert a date to a Julian date that is used in astronomy, use the constant 2415018.50. This formula works only for dates after 3/1/1901, and if you are using the 1900 date system. Column1 Formula Description (possible result) 6/23/2007 =[Column1]+2415018.50 Date in Julian format, used in astronomy (2454274.50) – Josh Einstein May 15 at 6:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.