Search results

  1. vhung

    Solved Actions to take before move to a different record in a form

    thanks for the recognition >good luck with your project
  2. vhung

    Solved Filter continuous form with multiple criteria

    good luck with you project >thanks for the like reaction
  3. vhung

    datediff between first and last row in subform

    several ways to do it >try this way >use query to sql SELECT [PhysicalTherapy].groupyear, First([PhysicalTherapy].sessiondate) AS FirstOfdate, Last([PhysicalTherapy].sessiondate) AS LastOfdate, [LastOfdate]-[FirstOfdate] AS diffdays FROM PhysicalTherapy GROUP BY [PhysicalTherapy].groupyear; >but...
  4. vhung

    Solved Actions to take before move to a different record in a form

    quite hard >address, city, state, and ZIP code. >using "BeforeUpdate" could be possible, where there is 1 field that received your old "address, city, state, and ZIP code" as field1 >could be the other field received your new "address, city, state, and ZIP code "AfterUpdate" as field2 >in a...
  5. vhung

    Solved Acddb: Filter item(s) not on the combo list

    >sample codes, very useful Dim strWhere As String Dim lngLen As Long If Not IsNull(Me.SelectPropertyName) Then strWhere = strWhere & "[PROPERTY TYPE] like ""*" & Me!SelectPropertyName & "*"" AND " End If lngLen = Len(strWhere) - 5 If lngLen <= 0 Then...
  6. vhung

    Solved Filter continuous form with multiple criteria

    wow very prompt >add this to my filter mode Dim strWhere As String Dim lngLen As Long Me.Filter = strWhere Me.FilterOn = True
  7. vhung

    How to set a Textbox in the Footer of Subform to look up text values in a column and choose outcome based on Criteria.

    welcome tammy >express out your vision for sure you shall meet the best result with your own way >thanks for the like response
  8. vhung

    Need advice building a workforce and attendance database

    very important data banking >if for this year you can make SplitTable for that as your server for 2020 attendance >well for 2021 separate SplitTable set on your link table manager, i used this method cause i also have data banking over 10k >on the run your 2020 SplitTable for 2021 is unlinked...
  9. vhung

    Solved Query SUM not summing

    hi nice query run >try the sql of query below SELECT Table1.PartNumber, Sum(Table1.SumOforderedqty) AS SumOfSumOforderedqty, First(Table1.orderdate) AS FirstOforderdate, Table1.PartNumber, Last(Table1.orderdate) AS LastOforderdate, First(Table1.SumOforderedqty) AS FirstOfSumOforderedqty...
  10. vhung

    How to set a Textbox in the Footer of Subform to look up text values in a column and choose outcome based on Criteria.

    quite tough >your field [Line Status] should have a partner fieldname ="CountRecieved" then if [Line Status] = "Received" then [CountRecieved] =1 >with that dataflow [Text35] = Sum([CountRecived]) >try that simple way, i used it with my complex Forms
  11. vhung

    Need advice building a workforce and attendance database

    look at your num2 2. calculate a weekly attendance (in total hours) for every staff in the list > your "Attendance (in hours)" if this refers to one day may that be on your report sumtotal "(in total hours)"
  12. vhung

    Need advice building a workforce and attendance database

    add 2 fields >time of log in and time of log out >in order to determined "Attendance (in hours)"
  13. vhung

    I want to Concatenate First Name and Last Name fields into Full Name Field

    3 fields were given > no worries > would be: [Full Name]=[Last Name] & ", "& [First Name] > on [Last Name] and [First Name] update insert code above
  14. vhung

    The future of Access

    we can still use access but more likely the updates be limit > Mainstream support for Access 2013 ended in 2018. Extended support will end in 2023. > isladogs mention "If you have a license for 2013 you will still be able to use it once the support period ends (in 2023?)" > Access 2016...
  15. vhung

    Suppress "You can't save this record at this time"

    sorry >i only sight the concept >yes codes has complete syntax for that (i always use it) >wish you could arrived with it (only you would consider the other form functions) >but if you want the specific syntax maybe i could share it later
  16. vhung

    Suppress "You can't save this record at this time"

    wow nice play >form timer is great >why you set IDLEtime and ExpiredTime idleminutes value is undetermined, if this run "If ExpiredMinutes >= IDLEMINUTES Then" just setting this "ExpiredTime = 0" for DoCmd.Quit acQuitSaveNone >if your time expired >=idle maybe set dim answer...
  17. vhung

    The future of Access

    You like Access much >on the run i use 2010 if my system break's down >2013 has nice feature and mangeable too >i try 2019 but i can't work with well, there's limation when setting up >as of today i keep on 2016 but indeed some controls don't work anymore, but i remain with 2016 >sure if 2013...
  18. vhung

    STILL CANT SUS THE COMBO TO LIST BOX

    good luck >with your project, you can do it, all the way
  19. vhung

    Update underlying table

    GUESS >That is auto run >maybe supply also the cmdsave codes if applicable >when you insert that ontimer always run for save to table >that if your acForm settings is true to your target actable >i used it many times >well in this case, supply your codes to ontimer, if you have use calculations
Back
Top Bottom