Hi ,
To add to what has already been posted , you should take another look at all your formulae ; to examine your posted formula , which is :
=IF(A60044=0,0,IF(COUNTIF(A$1:A60044,A60044)=1,1,0))
this will return either 0 or 1 ; if A60044 = 0 , it will return 0 ; if A60044 is non-zero , it will return 1 if the value in A60044 is unique , and it will return 0 if it has duplicates.
You need to ask yourself whether any calculations will be done based on these formulae , and if so , what are the calculations.
Suppose we removed the 2 IF statements from the above formula , what would be the result ?
The formula itself would become :
=(COUNTIF(A$1:A60044,A60044)=1)
This formula would return TRUE if the value in A60044 has no duplicates , and FALSE otherwise.
If you reduced it even further to :
=COUNTIF(A$1:A60044,A60044)
this formula would return a number from 1 upwards ; 1 if there are no duplicates , and any other number if there are duplicates.
You need to see if you can make use of these reduced versions or not ; cell displays can always be formatted to show what ever is required , though formatting can also add to calculation times ; however , at least from the point of view of readability , the formulae themselves should be as simple as possible , as long as you are not sacrificing their functionality.
Narayan