December 14, 200421 yr What could go wrong in this simple calc? Get(Recordnumber) & " of " & Get(foundrecords) Had to translate the recordnumber and foundrecords from swedish... The first one should give me the recordnumber of the active record, the second one the number of records in the found set. Instead I get the recordID and the total number of records. WHY?
December 14, 200421 yr I use the following on the layout: Record @@ of <<Found_Records>> found out of <<Total_Records>> total <<Sort_Status>> Where Found_Records = Get(FoundCount) Total_Records = Get(TotalRecordCount) Sort_Records = Case(Get(SortState) = 0; "Unsorted"; Get(SortState) = 1; "Sorted"; "Semi-Sorted") are unstored calculations.
December 14, 200421 yr Author It was a storing issue (and foundrecords was wrongly translated, it should have been foundcount). /Thanks
Create an account or sign in to comment