Jump to content

keenej

Members
  • Posts

    12
  • Joined

  • Last visited

    Never

Posts posted by keenej

  1. What IM trying to accomplish within loop is if date changes to a new date then reset some variables and calculate new totals for the next date.

     

      while (!$rs->EOF) {

     

    $tmpDATE=$rs->Fields('ProductionDate');

     

    if($tmpDATE==$loopDATE){

     

    }else{

    echo "TEMP DATE " . $tmpDATE . "<BR>";

    $loopDATE=$tmpDATE;

    echo "LOOP DATE " . $loopDATE . "<BR>";

    }

     

    $rs->MoveNext(); }

  2. IM not sure how to mark this as resolved, but thanks MCHL. I looked into referencing and that is what was happening.

     

    This is the fix

     

    if($tmpDATE!=$preDATE){

    $preDATE=$tmpDATE;

    $tmpDATE=$rs->Fields('countedDATE');

    $tmpACOUNT=0;

    $tmpBCOUNT=0;

    $tmpCCOUNT=0;

    }

     

    Had to create a fake date before the query runs forcing the if statement to be true. You have to set the referenced variables in the above order or else they will always return the same value. Set First Variable Set Second Variable = to First Variable Change 1st Variable. That was confusing.

     

    Thanks Again

  3. here is the complete block of code.

     

    $tmpX = 0;

     

    $rs = $conn->Execute("SELECT * FROM [ABC Parts Counted By Reason] WHERE ABC_LogCounted.ABCREASON<>21 AND CountedDate Between #$BD# AND #$ED# ORDER BY CountedDate ASC");

     

          while (!$rs->EOF) {

     

    $tmpDATE1=$rs->Fields('CountedDate');

     

    echo $tmpDATE1;

    echo $tmpDATE2;

     

    if($tmpDATE1<>$tmpDATE2){

    echo "DATE CHANGED";

    $tmpDATE2=$tmpDATE1;

    $tmpACOUNT=0;

    $tmpBCOUNT=0;

    $tmpCCOUNT=0;

    }

     

    if($rs->Fields('ABC')=="A"){

    $tmpACOUNT++;

    }

     

    if($rs->Fields('ABC')=="B"){

    $tmpBCOUNT++;

    }

     

    if($rs->Fields('ABC')=="C"){

    $tmpCCOUNT++;

    }

     

     

    $tmpX = $tmpX + 1;

    echo "<tr>";

    echo "<td align='Left'>$tmpX</td>";

    echo "<td align='Left'>$tmpDATE2</td>";

    echo "<td align='Left'>$tmpPART</td>";

    echo "<td align='Left'>$tmpACOUNT</td>";

    echo "<td align='Left'>$tmpBCOUNT</td>";

    echo "<td align='Left'>$tmpCCOUNT</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "<td align='Left'>$tmpDATE</td>";

    echo "</tr>";

     

            $rs->MoveNext(); }

     

  4. Result should be like below. Except  where 13 is printed a second time should be a 0 and where the 1 is on the second 13 should be there, but the next value should be 0. Only 1 of the 3 numbers in each row should have a value and increment to the next time that column has a certain value. A B or C

    Hope this helps a little more.

    9/2/20089/2/2008 1 9/2/2008  1 0 0

    9/2/20089/2/2008 2 9/2/2008  2 0 0  

    9/2/20089/2/2008 3 9/2/2008  3 0 0

    9/2/20089/2/2008 4 9/2/2008  4 0 0

    9/2/20089/2/2008 5 9/2/2008  5 0 0

    9/2/20089/2/2008 6 9/2/2008  6 0 0  

    9/2/20089/2/2008 7 9/2/2008  7 0 0

    9/2/20089/2/2008 8 9/2/2008  8 0 0

    9/2/20089/2/2008 9 9/2/2008  9 0 0

    9/2/20089/2/2008 10 9/2/2008  10 0 0

    9/2/20089/2/2008 11 9/2/2008  11 0 0

    9/2/20089/2/2008 12 9/2/2008  12 0 0  

    9/2/20089/2/2008 13 9/2/2008  13 0 0  

    9/2/20089/2/2008 14 9/2/2008  13 0 1

    9/3/20089/3/2008 15 9/3/2008  14 0 1

     

  5.         $tmpDATE1=$rs->Fields('CountedDate');

     

            echo $tmpDATE1;

            echo $tmpDATE2;

     

            if($tmpDATE1<>$tmpDATE2){

                echo "DATE CHANGED";

                $tmpDATE2=$tmpDATE1;

                $tmpACOUNT=0;

                $tmpBCOUNT=0;

                $tmpCCOUNT=0;       

            }

     

     

  6. IM not sure what IM doing wrong here, but the code within the if statement never executes. The Dates Change I used the echo statment to see the dates and tmpDATE1 always = tmpDATE2.

     

    Please take a look at the code and point me in the right direction. Thanks

       

            while (!$rs->EOF) {

     

    $tmpDATE1=$rs->Fields('CountedDate');

     

    echo $tmpDATE1;

    echo $tmpDATE2;

     

    if($tmpDATE1<>$tmpDATE2){

    echo "DATE CHANGED";

    $tmpDATE2=$tmpDATE1;

    $tmpACOUNT=0;

    $tmpBCOUNT=0;

    $tmpCCOUNT=0;

    }

     

    if($rs->Fields('ABC')=="A"){

    $tmpACOUNT++;

    }

     

    if($rs->Fields('ABC')=="B"){

    $tmpBCOUNT++;

    }

     

    if($rs->Fields('ABC')=="C"){

    $tmpCCOUNT++;

    }

     

     

    $tmpX = $tmpX + 1;

    echo "<tr>";

    echo "<td align='Left'>$tmpX</td>";

    echo "<td align='Left'>$tmpDATE2</td>";

    echo "<td align='Left'>$tmpPART</td>";

    echo "<td align='Left'>$tmpACOUNT</td>";

    echo "<td align='Left'>$tmpBCOUNT</td>";

    echo "<td align='Left'>$tmpCCOUNT</td>";

    echo "</tr>";

     

            $rs->MoveNext(); }

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.