I want to write a fromula for the sum of the net value in each year based on part numbers. if the part number exist in both the years it should give me the sum of all those part numbers in respective years.
I have year as 2011 and 2012. first of all i created a check to see whether the part number exist in both the years or not.
=count(fiscal year in part number)
so its giving me value either 1 or 2
Now i want to sum the net value for 2011 and 2012 giving the condition if count is 2.
but its nt giving me the correct result.
Dont know what exactly you are displaying in your report window. However, Sum(Value) in (Partnumber) will sum up all the Values for all the years,partnumber wise
Crosstable and use the sum-function avialable in table.
And if you really want to see only when there are 2 years to a part modify the sum-formule to something like: if count(years) per part)=1 then sum(amounts)
goodluck