I have a record where the each date entry pulls the description with it.
ie
12/1/04
charge 1
charge 2
1/5/05
charge 1
charge 2
and so on...each date pulls the orginal charges into the table. Now, when I try to spit out the charges I get
charge 1
charge 1
charge 2
charge 2
and so on...
I tried to get a FIFO on the records, but I get The Summary/running total field coud not be created.
formula: {DISPOSITION.HEARING_DATE_TIME}= maximum({DISPOSITION.HEARING_DATE_TIME},{DISPOSITION.DISPOSITION_CODE})
IF I suppress dupes I get large gaps and there are times when there are multiples of the same charge.
tia...
This was the basis for this formula, from my search of the forum:
If you're pulling from inventory, then you might use a FIFO to grab the oldest inventory by using the date instead, as there's probably a date field for the date the items were placed:
{table.date}= minimum({table.date},{table.item_id})
-k
------------------
Curious by Nature,
Linux by Design
ie
12/1/04
charge 1
charge 2
1/5/05
charge 1
charge 2
and so on...each date pulls the orginal charges into the table. Now, when I try to spit out the charges I get
charge 1
charge 1
charge 2
charge 2
and so on...
I tried to get a FIFO on the records, but I get The Summary/running total field coud not be created.
formula: {DISPOSITION.HEARING_DATE_TIME}= maximum({DISPOSITION.HEARING_DATE_TIME},{DISPOSITION.DISPOSITION_CODE})
IF I suppress dupes I get large gaps and there are times when there are multiples of the same charge.
tia...
This was the basis for this formula, from my search of the forum:
If you're pulling from inventory, then you might use a FIFO to grab the oldest inventory by using the date instead, as there's probably a date field for the date the items were placed:
{table.date}= minimum({table.date},{table.item_id})
-k
------------------
Curious by Nature,
Linux by Design