Forum Discussion
Tony2021
Apr 03, 2022Steel Contributor
Between formula
Hello Experts, I am trying to add a between condition to the following. Rate2: Format(DLookUp("Rate","qryPricing","ID=" & [ProjID] & "[dte] between [DateStart] and [DateEnd]"),"Percent") I ...
arnel_gp
Apr 04, 2022Steel Contributor
Which table does [dte] belongs? maybe:
Rate2: Format(DLookUp("Rate","qryPricing","ID=" & [ProjID] & " And " & [dte] & " between [DateStart] and [DateEnd]"),"Percent")
Rate2: Format(DLookUp("Rate","qryPricing","ID=" & [ProjID] & " And " & [dte] & " between [DateStart] and [DateEnd]"),"Percent")
Tony2021
Apr 07, 2022Steel Contributor
HI Arnel, just checking in with you. Let me know if you have another suggestion. Looking forward to your response.