Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Tubby6

    VBA macro vlookup equivalent ?

    Hello, I am new to VBA and have searched for various websites about comparing cells in two worksheets and displaying the rows that are different in a 3rd sheet. I can easily do this in vlookup see but I would like to do it via a command button. Other websites used integers as examples however I...
  2. Tubby6

    PHP Multiplication Script

    ...name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $insurancecost= $_GET['insurancecost']; $days= $_GET['days']; $premium = $insurancecost * $days; print "Approximate Insurance Cost is" . $premium . "<br>"; ?>
  3. Tubby6

    PHP Multiplication Script

    ...name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $insurancecost= $_GET['insurancecost']; $days= $_GET['days']; $premium = '$insurancecost * $days'; echo "My Approximate Insurance Cost is =" . $_GET['$premium']; ?>
  4. Tubby6

    PHP Multiplication Script

    ...<input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $insurancecost= $_GET['insurancecost']; $days= $_GET['days']; $premium = $_GET['$insurancecost * $days']; echo "My Approximate Insurance Cost is =" . $_GET['$premium']; ?>
  5. Tubby6

    PHP Multiplication Script

    ...type="INT" name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $insuranctcost= $_GET['insurancecost']; $days= $_GET['days']; $premium = $_GET['$insurancecost * $days']; echo "My Insurance Cost is =" . $premium; ?>
  6. Tubby6

    PHP Multiplication Script

    ...<input type="INT" name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $cost = $_GET['insurancecost']; $day = $_GET['days']; $premium = $_GET['$cost * $days']; echo "My Insurance Cost is =" . $_GET['$premium']; ?>
  7. Tubby6

    PHP Multiplication Script

    ...<input type="INT" name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $cost = '$_GET['insurancecost']; $day = '$_GET['Daysabroad']; $premium = $cost * $day; echo "My Insurance Cost is =" . $_GET['premium']; ?>
  8. Tubby6

    PHP Multiplication Script

    ...Days abroad: <input type="INT" name="days"><br> <input type="Submit" name="submit" value="Search"> <input type="Submit" name="reset" Value="Reset"> </form> <?php $cost = '$insurance_cost'; $day = '$days'; $premium = $cost * $day; $result= echo "My Insurance Cost is =" .$income; ?>
  9. Tubby6

    Crystal Report Cross Tab

    success! you are brilliant.
  10. Tubby6

    Crystal Report Cross Tab

    I tried this .. but it prompts me that a boolean is required... If isnull({HPD_Help_Desk.Generic Categorization Tier 1}) then "No Data" else {HPD_Help_Desk.Generic Categorization Tier 1} your help is greatly appreciated tubb
  11. Tubby6

    Crystal Report Cross Tab

    Hello I am looking to create a cross tab based on the following 1. The count on items that do not have a particular item. I was able to get the count on a field that did have information, BUT NOT ON THE COUNT THAT DID NOT HAVE INFORMATION. so i want a cross tab that displays the number of...
  12. Tubby6

    Setting Specified Date in Crystal

    yup that's right it worked. thanks a bunch. -tubby
  13. Tubby6

    Setting Specified Date in Crystal

    I am using crystal v10. and i want to make my report run from every wednesday to wednesday. it consists of this {HPD_HelpDesk.Create Time} >= CurrentDate-7 and time({HPD_HelpDesk.Create Time}) in time(16,0,0) to time(23,59,59) But I want to set up such that it runs every wednesday to...
  14. Tubby6

    Time Intervals in crystal

    OMG I THINK THAT WAS THE PROBLEM... OMG!!! THANK U SO MUCHHH IN WORKED... U ARE THE BEST. YOUR HELP IS MUCH APPRECIATED!!! I HAD A PREVIOUS THREAD BUT IT WASN'T ANSWERED PROPERLY !! THANKS SO MUCH -TUBBY
  15. Tubby6

    Time Intervals in crystal

    How do i create a time interval in crystal v10. I have the following {HPD_HelpDesk.Create Time} >= DateTime (CurrentDate-7, Time(16, 00, 00 ) ) This results in all the data seven days before today's date AFTER or equal to 4. BUT I WANT data from seven days ago from 4 to 12.. every day.. for...
  16. Tubby6

    Creating Time Ranges without using prompts

    i went ahead and changed the previous entry to the following {HPD_HelpDesk.Create Time} >= currentdate-7 in [Time(4) to Time(12)] ... it says that a boolean array is needed now. i also tried {HPD_HelpDesk.Create Time} >= currentdate-7 and Time ({HPD_HelpDesk.Create Time}) in [Time(4) to...
  17. Tubby6

    Creating Time Ranges without using prompts

    I went ahead and changed [4 to 12] to [16 to 00] as i felt that perhaps that was the problem. but it still prompts "time range is needed"... is there anything that can be done to fix this problem? your help is much appreciated -tubby
  18. Tubby6

    Creating Time Ranges without using prompts

    Madawc I'm using Crystal v10.. So i went ahead and used the first formula you gave me.. But.. an error message pops up saying that a date time is required in [4 to 12] {HPD_HelpDesk.Create Time} >= currentdate-7 and Time({HPD_HelpDesk.Create Time}) in [4 to 12]
  19. Tubby6

    Creating Time Ranges without using prompts

    Hello I would like some help in creating a report that results the following requirements: 1. Displays results From Wednesday to Wednesday from 4PM -12 PM only. I have created a prompt with I cannot use and I would like some help in how to go about this.. I had chosen in Select Expert...
  20. Tubby6

    Data Prompt in Crystal

    variable # of days.. turkbear. Dgillz help worked. thanx a bunch

Part and Inventory Search

Back
Top