Search results

  1. onur_can

    expression help

    it should be according to the conditions you describe. =IIf(IsNull([Due Date])<(Date()) Or IsNull([Completed Date]);"Overdue";"")
  2. onur_can

    Draw on a form?

    Access allows you to draw Line and Rectangle objects only. If you want to decorate your form with different shapes, save your drawing in advanced picture editors. Then, introduce this image to the picture feature of the form.
  3. onur_can

    Solved DSum in datasource

    Yes no need it. It can be stored in a variable. But when you enter the Criterion, you must add the appropriate marks. You know that the data type is important when determining the criteria, String, The spelling of the Number and Date fields are separate from each other. Remember. I gave the...
  4. onur_can

    Solved DSum in datasource

    I think you should transfer the criteria to the variables. Dim a,b a = Year([TenderDate) * 12 + DatePart("m"; [TenderDate]) b = Year(Date()) * 12 + DatePart("m"; Date()) -1) txtTotal = DSum ("TotalSum";"tblTender";"a = '" & b & "'")
  5. onur_can

    Solved DSum in datasource

    "m" 'm' which one is right ?
  6. onur_can

    query not working by changing field type from number to text

    Hi In subformed forms, the fields that link subdomains and upper domains must have the same data type. Why do you need to convert the subform to the text field. In this way, working in the database reduces efficiency. I think it's not a good idea to convert it to text. If you still insist on...
  7. onur_can

    Solved Running Total from Query

    You must first create a query that takes the sum. You should then include this query in another query that contains all the fields. SELECT Sum([Query Office].RunningTotal) AS ToRunningTotal FROM [Query Office]; SELECT [Query Office].Event, [Query Office].Invoice_Date, [Query...
  8. onur_can

    Runtime error '3464': Data type mismatch in criteria expression

    Give the default value as a date, not as now, If you also want to keep the time information open the time field and assign it the default value as time.
  9. onur_can

    Printer not found

    Hello I think if you normally see the printer in Excel and Word, if you can't see Access and see the printer in all other applications, you need to uninstall Office 2010 and do it again.
  10. onur_can

    Emailing with Access

    You can take advantage of ms access EMailDatabaseObject macro. You can set all parameters in this window.
  11. onur_can

    Access startup very very slow

    So how does your other office programs open? For example Excel, Word, Powerpoint, Publisher.
  12. onur_can

    Unbound Combo Box Based on a Query

    Take advantage of the round function. Add a field to the query design window and use the expression below. Test: Round([field])
  13. onur_can

    Mid Function

    What was the result? Were you able to fix it?
  14. onur_can

    Send or save report as .pdf

    The problem with no report name is caused by this, specify the report name and try again.
  15. onur_can

    Mid Function

    Sample Data: ZS-RPB(30551)Sliding door handle mechani Sample Data: ZS-RPB (30551)Sliding door handle mechani Have you analyzed the problem thoroughly? I said the 9th character since I saw an extra space in front of the document number. It's true what you say. It will start from the 8th...
  16. onur_can

    Mid Function

    Guys, there is no need to write such long things that the problem is obvious and the problem is solved very well with the code I suggest. It ends with just one line. No need to use anything other than MID function. But I assume the length is the same until the 9th character.
  17. onur_can

    Docmd.OpenForm WHERE condition trouble

    What are the consequences? What error do you get
  18. onur_can

    Docmd.OpenForm WHERE condition trouble

    There is a value in the Logged_IN field when you open the form, right? DoCmd.OpenForm "AuditClicksUsers", acFormDS, , "User = '" & Logged_In & "'", acFormEdit
  19. onur_can

    Problem in continues form combo box

    look here. ComboBox Problem
Back
Top Bottom