Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mintman
  • Order by date
  1. mintman

    Filtering details within a group per group change

    Why dont you insert a Summary on that(MAX).I guess it should work
  2. mintman

    Filling text box based on isnull

    If ( Trim( Cstr({GermReadings.FinalGermDate})) = "" OR IsNull( Cstr({GermReadings.FinalGermDate})) OR Date{GermReadings.FinalGermDate} = Date(0,0,0) ) Then "**Germination will follow" Else
  3. mintman

    Filling text box based on isnull

    Yeah use the boave formula, it should work.
  4. mintman

    Filling text box based on isnull

    Yeah it should work, but are you having the time field too?, If ({GermReadings.FinalGermDate}) = (NullDate,Nulltime) then "**Germination will follow" Else " " You mentioned above statment, but you are using only DateField not Both Date and time field. So i guess you have to use If...
  5. mintman

    Filling text box based on isnull

    Oh Im sorry I dint see that was a time field.Try this If Isnull (ToCHAR({GermReadings.FinalGermDate}))=TRURE then "**Germination will follow" Else " " Not sure this will work. But give it a shot. COnvert the date field into string format first.Thanks.
  6. mintman

    Filling text box based on isnull

    Try this If Isnull ({GermReadings.FinalGermDate})=TRURE then "**Germination will follow" Else "
  7. mintman

    Time Issue

    Try this Formula:Time2 if tonumber({Table.Field})<100000 then "0"+ totext(tonumber({Table.Field}))else if tonumber({Table.Field})<10000 then "00"+ totext(tonumber({Table.Field}))else if tonumber({Table.Field})<1000 then "000"+ totext(tonumber({Table.Field}))else if...
  8. mintman

    Converting Number to TIme, Number is in format of 163,321.00

    I will give this a try. Thanks for the info AKS. M
  9. mintman

    Need Help on Summary

    Actually I evaluated on chnage of record Called AISLE, and I did a group on zone. So I Gave reset on change og Grop (Zone). It works fine now. Sorry I was not clear before. Thanks LB, M
  10. mintman

    Need Help on Summary

    Im sorry, I figured there was a different field I can use that as condition in running total. Thanks. M
  11. mintman

    Need Help on Summary

    Yeah I tried that and did a running total but still it dosent work.
  12. mintman

    Need Help on Summary

    Hello friends, this is my case Example: ZONE Case Volume AB AB01 10 AB AB01 20 For this Case I should Get Total Volume 30 ZONE Case Volume AB AB01 10 AB AB02 10 For this case I should get Volume 10 ZONE Case...
  13. mintman

    Need Help onTricky Running Total

    Sorry forgot to mention I have to Sum the voulume only when fields Under case is constaant, even if it is blank i can sum. Problem is if there is Blank record and a data record are both combined.. Thanks.
  14. mintman

    Need Help onTricky Running Total

    I have data like this Zone Case Volume AB01 DCDC 10 AB01 DCD2 10 AB01 DCD3 10 For this Total Volume should be 10 for Zone AB01 Zone Case Volume AB01 10 AB01 10 AB01 10 AB01...
  15. mintman

    Showing the same Summary for two different groups

    Im sorry LB, this was not even my report and they gave me a deadline this evening, was lil nervous. I am really sorry about that. And I want to thank you so much for your time, this worked awsome. I am learning lot of stuff from this site. Again I am sorry and many thanks. M
  16. mintman

    Showing the same Summary for two different groups

    Sorry LB, for some reason I am getting 0 for c and If i chnage that to B i get zero there too. I will give you my formula Formula1: If {E_AUD_LOG.ELEM_DESC} = "MAKE CARTON PACK" then {E_AUD_LOG.TA_MULTIPLIER} Formula2: whileprintingrecords; numbervar elementA :=...
  17. mintman

    Showing the same Summary for two different groups

    Hello LB thanks a lot for quick reply I did what you suggested but I am getting 0 there like A 20--------------Group Header B 5--------------Group Header C 0--------------Group Header I am getting right data for A,B but not c . I will explain in more detail I did group on on...
  18. mintman

    Showing the same Summary for two different groups

    Hello friends need some help on this I have group on field A and anfd Im showing Summary in Group Headrer on Units. Below is the example data Group Summary A 20--------------Group Header B 5 C 1 thing is i want to show whatever the summary value I get for A , I want to show...
  19. mintman

    Group Data by Month

    I had this problem too, When we convert the string format date 1,166,801,760 to number in the formula and then if we group on it date field in the detail section will be messed up. For some reason it dosent show right data. But indtead if we group on the original string format data and use the...

Part and Inventory Search

Back
Top