Search results

  1. P

    Suppress blank rows in report

    Great ! I was thinking of that option (can grow/shrink) but was not sure if the row would get hidden. Thanks a lot !! Will try it out @ work.
  2. P

    Suppress blank rows in report

    Yes, there are 3 different types of taxes applicable. Depending on the type of order one or more taxes will be paid by the customer. And I may have to show the "Total tax amount" and "Total paid" also. Thanks for the help.
  3. P

    Suppress blank rows in report

    You are right ! But this table with Order_id, Order_Value, Tax1_Amt, Tax2_Amt, Tax3_Amt......and several other fields is drawn into Access from an Excel worksheet sent to us. And in Excel it's a strip of information in one row per order where the customer (depending on some condition) may have...
  4. P

    Suppress blank rows in report

    Hi. How do I suppress (not display) the empty fields in detail section of my report ? Table structure is as: Order_id, Order_Value, Tax1_Amt, Tax2_Amt, Tax3_Amt Report format is as: Ord_id : Ord1001 Ord_val : 500000 Tax1_Amt : 12000 Tax2_Amt : 3650 Ord_id : Ord1003 Ord_val : 965000...
  5. P

    Report printing issues

    Fantastic !! It worked.:) You always give such excellent solutions, and so quickly. Many thanks !!
  6. P

    Report printing issues

    Hello ! 1) I created a simple report using the wizard. It's in landscape mode. On screen it shows all fields within, but when I print it; I see that the last field with part of its data is spilled onto page 2. I've tried to adjust page margins etc, reduced the fonts etc., but still does not...
  7. P

    Dates in short format formatted within a string

    Great ! Thanks a ton !!
  8. P

    Dates in short format formatted within a string

    One more thing. Is there no need to convent the date into a string like str(format(.... ??
  9. P

    Dates in short format formatted within a string

    Thanks for all the help. Will try and see. Concern is the date part in the string.
  10. P

    Dates in short format formatted within a string

    Hi. I have a form in which I fill some fields (3 text boxes, 2 combo boxes). The last field is also a text field (255 chars) that needs to be populated based on the other fields. It's like a string concatenated. The fields are date_in, date_out, item_name, status. My code is as follows ...
  11. P

    Cancel data entry of a record

    Thanks a lot. Will try that.:)
  12. P

    Cancel data entry of a record

    Thank you all very much. I did try the me.undo attached to a cancel button on the form itself; but it does not work . Prompts with a 'cannot undo' message. ( Is the me.undo meant for the last committed record to be rolled back - just for my knowledge) BTW, I did not code Cancel = True before...
  13. P

    Cancel data entry of a record

    Hi. How can I clear all the contents entered during data entry fields on a form, after say I enter 8 of the 15 fields on a form ? What I mean is, I dont want that record to be entered. Access defaults to filling a record partly in the underlying table, as I am using a bound form. Is there a...
  14. P

    Dlookup issue

    Excellent ! Thank you so much. :)
  15. P

    Dlookup issue

    Hi, I have a Dlookup code on a field in a form. It fires properly and finds if a value already exists in the underlying table or not. And a msg box pops up are as per my code. But, it behaves erratically. Sometimes, it does not find a value that exists in the field at all. I need to refresh...
  16. P

    Query result grouped

    I think my initial post covered the expected results of the query. However, I'll re-frame the question and post again soon. Thanks.
  17. P

    Query result grouped

    Sure. Table : OrdersMain Fields : Slno, Itemcode, Itemname, QtyOrdered, DateOrdered. Status Records : 1,S100, Shoes,150, 12-jun-16, Delivered fully 3,S100, Shoes,200, 14-may-17, Partially delivered 8,S100,Shoes,300, 22-sep-17, Delivery due...
  18. P

    Query result grouped

    Hi. Is it possible to get a query result (grouped) as follows: ? Itemcode,Itemname,QtyOrdered,DateOrdered ( are the fields) S100, Shoes,150, 12-jun-16 .....................200, 14-may-17 .....................300, 22-sep-17...
  19. P

    Grouping text strings in query result

    Thanks ! I'll try that.
  20. P

    Grouping text strings in query result

    Hi. I have a table that records material received. The main fields are MatID, MatName, DateRecd, ClrdOn, ClrdTo, Status. Any material can come any number of times in a month. Each time it comes, it is stored as a record. Example : MatID, MatName, DateRecd, ClrdOn, ClrdTo, Status M121, Steel...
Top Bottom