i changed it using dLookup but it's taking to long...
i guess my final question is.. is there a way to jump to a certain record?
like if 100 records show up but i wanna jump to 54?
since record selector is filtering out some records
the record number doesnt match the number on the form
so instead of showing all 100 records, open in a addMode where user can type in a number to find a specific record.
i can't do that with the way things are set up now huh?
i have a form which consists of few text boxes + combo boxes.
form shows all the transactions that has been made.
(all fields are bound).
for ex. when user opens the form, they see 100 records they can scroll through. here's the tricky part. I only want to show records where cboOSID and...
another quick question.
seems like this query is running fine but i dont
have much data in yet.
is this one ok?
UPDATE (tbl_BudMaster AS B INNER JOIN tbl_Vregister AS V ON B.BudgetKey = V.BudgetKey) INNER JOIN tbl_purchaseRequisition ON (B.BudgetKey = tbl_purchaseRequisition.BudgetKey) AND...
this is what i have now..
UPDATE tbl_BudMaster AS B INNER JOIN tbl_PurchaseRequisition AS V ON B.BudgetKey = V.BudgetKey SET B.PrAmt = NZ(DSum("Amount","tbl_PurchaseRequisition","BudgetKey='" & B.BudgetKey & "'"),0)
WHERE (((V.Actual)=No) AND ((V.Estimate)=Yes)) and b.budgetkey = v.budgetkey...
what im trying to say is...
shouldn't my update query return 0
if both records are true on WHERE (((V.Actual)=No)); ?
even after records are updated,
pramt is still at 100 instead of 0
like this query for example..
UPDATE tbl_BudMaster AS B INNER JOIN tbl_PurchaseRequisition AS V ON B.BudgetKey = V.BudgetKey SET B.PrAmt = nz(DSum("Amount","tbl_PurchaseRequisition","BudgetKey='" & B.BudgetKey & "'"),0)
WHERE (((V.Actual)=No));
lets say user creates 2 records. (rs=tbl_pr)...
I have two queries that updates currency
one to update the PRamt and other to update the VoucherAmt.
User fills out a Purchase Requisition form and at first by defaut, check "chkEST" is selected.
PRamount then would be updated /w Qry_PrAmt.
when user updates this form and checks...
I have an update Query based on two tables.
I would like to update tbl_BudMaster.VoucherAmt
where budgetkey is equal
here's the sql code i currently have
UPDATE tbl_BudMaster INNER JOIN tbl_Vregister ON tbl_BudMaster.BudgetKey = tbl_Vregister.BudgetKey SET tbl_BudMaster.VoucherAmt =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.