Search results

  1. T

    where condition doesnt call 0

    SELECT Tmain.RiskID, Tmain.isActive, Tmain.RiskCode, Min(Tactions.DueDate) AS MinOfDueDate, Tmain.location FROM Tmain INNER JOIN Tactions ON Tmain.RiskID = Tactions.RiskID GROUP BY Tmain.RiskID, Tmain.isActive, Tmain.RiskCode, Tmain.location;
  2. T

    where condition doesnt call 0

    yeap. ="RiskID In(SELECT RiskID FROM QddallA WHERE Site='site1' and status='completed')" works just fine idk i guess im using your code btw lol
  3. T

    where condition doesnt call 0

    didn't any impact on my another textbox where i have this event with "where condition" u mean if i run this even i mean if i dbl click it ? it should open for me a list of records which fit to my condition
  4. T

    where condition doesnt call 0

    sure, its
  5. T

    where condition doesnt call 0

    hey guys ! i have a query where i have value 0 in RiskCode filed and i have a textbox in form and in dbl click even i have ="RiskID In(SELECT RiskID FROM Qddall WHERE riskcode=0)" and when i run dbl click event - it shows me empty list. i even tried to call to table directly [RiskCode]=0...
  6. T

    Solved stuck on simple issue

    thank you very much ! it works now !
  7. T

    Solved stuck on simple issue

    yeah, my bad. i have a textbox that shows me a number according to countrol source expression. and i need to find out how could i exclude criteria (text) in control source expression and in dbl click event as well
  8. T

    Solved stuck on simple issue

    hey guys, im stuck at very simple step i have a bextbox that shows me a number accoring control sorce =IIf(DCount("site";"QddallA";"site='Site1' and status not in = 'Rejected' and duedate<completedDate")=0;"";DCount("site";"QddallA";"site='Site1' and status not in = 'Rejected' and...
  9. T

    Solved Where condition in dbl click event

    it worked ! awesome ! thank u , Sir ! :) much appriciated for your help !
  10. T

    Solved Where condition in dbl click event

    hello everyone ! i have a double click event where it opens up for me a master list. i tried this one ="RiskID In(SELECT RiskID FROM QddallA WHERE Site='site1' and duedate<date() and isactive=false and status='In progress' or 'New' and duedate<date() and isactive=false)" and this one ="RiskID...
  11. T

    Solved the expression you entered is too complex

    @plog , @cheekybuddha , @Gasman , @The_Doc_Man , @tvanstiphout , @Pat Hartman , @GPGeorge , @arnelgp , @CJ_London , @nector thank u very much guys ! appriciate your help and patience towards noob here like me ! glad to be here. best commuity !
  12. T

    Solved the expression you entered is too complex

    i just made this textbox countro sorce that field in table i created where 25 autonumbers ID (with PK) = sov \ likehood indicator then i just added in my countiniusl form in SQL i saw a new code FROM TriskSL INNER JOIN Tmain ON TriskSL.riskSLid = Tmain.RiskCode; and now it works !!!!! look
  13. T

    Solved the expression you entered is too complex

    YEAH ! i made it ! u guys helped me a lot. it was so easy actually
  14. T

    Solved the expression you entered is too complex

    i have already data in sql, as it needs to display data in continius form. how can i combine them ? i mean how can i make them work together ? i renamed FriskSLcode to TriskSLcode as its a table not a form. sorry,
  15. T

    Solved the expression you entered is too complex

    i added a new table with 25 IDs with primary keys and link this table with my MainTable. so now how do u make riskSLcode to be shown in my countiniusly form. i think it should be somehting with =riskID = " & risk
  16. T

    Solved the expression you entered is too complex

    now it works, but active record's data populated to others.
  17. T

    Solved the expression you entered is too complex

    i used Private Sub Form_Current() Select Case [RiskCode] Case 1: Me.txtb = "1A" Case 2: Me.txtb = "1B" Case 3: Me.txtb = "1C" Case 4: Me.txtb = "2A" Case 5: Me.txtb = "2B" Case 6: Me.txtb = "2C" Case 7: Me.txtb = "3A" Case 8: Me.txtb = "1D" Case 9: Me.txtb =...
  18. T

    Solved the expression you entered is too complex

    by cells i meant textbox with dcount in it :) sorry
  19. T

    Solved the expression you entered is too complex

    i dont know even what that it .. so :) my db will be located in local storage and up to 50 ppl will be using it via local network. 1-2 might be simonteniulsly.
Back
Top Bottom