count with accross
count with accross
(OP)
I have also an other problem (sample from empdata)
If i have an collumn salary and thats accrossed by year
How is then possible to generete an formule wich
can count the salary of year minus salary-1 /salary of year *100
If i have an collumn salary and thats accrossed by year
How is then possible to generete an formule wich
can count the salary of year minus salary-1 /salary of year *100
RE: count with accross
CODE
SUM SEATS
COMPUTE PCTDIFF/F6.2=IF BODYTYPE NE LAST BODYTYPE THEN 0
ELSE (LAST SEATS/SEATS) * 100;
BY BODYTYPE ACROSS COUNTRY
END
RE: count with accross