Search results

  1. S

    last 12 Business days starting from today

    Can anybody help me in getting the last 12 business days data excluding weekends. Also the results should be group by each business day I have a table with value field and date field How can I find previous 12 days(only weekdays) value group by each day
  2. S

    Previous months in months order

    Thank you very much. It is working fine Also can you tell me how to find the previous 12 working days excluding weekends ?? I already posted this in forums but didnot get it work
  3. S

    Previous months in months order

    I have been facing problems since started writing queries against previious months, years, days etc. I wrote the following query to get the previous 12 months which is working fine but the Order of months giving me problem Suppose if I run today the query I should get months from Oct 2008...
  4. S

    Display last 12 weekdays data

    The query is not giving me previous 12 days data. Please find the attached Datevalues in table and query results. When I enter 11/7/2008, query should give me the previous 12 days data excluding weekends Results should include 11/3/2008, 11/4/2008 which are available in table The current...
  5. S

    Display last 12 weekdays data

    Here is my query SELECT * FROM tbl_Log AS T1 INNER JOIN [SELECT TOP 12 tbl_Log.cdate FROM tbl_Log T2 WHERE Weekday(T2.cdate) NOT IN (1,7) ORDER BY T2.cdate DESC ]. AS T2 ON T1.cdate = T2.cdate;
  6. S

    Display last 12 weekdays data

    I cannot use inline query in my situation. I need to write a single sql query as I need to display in Business Objects report
  7. S

    Display last 12 weekdays data

    The above query is not showing correct results. Also I have date field in only one table. I need to get the previous 12 days excluding holidays I think we can use weekday function. But I am not getting the logic to use it
  8. S

    Display last 12 weekdays data

    How to get the previous 12days (only weekdays.Exclude weekends) by selecting a date using query group by each day
  9. S

    How to convert Number to Time in Table

    Yes. 0.29 represents 29 sec and 1.34 represents 94 seconds
  10. S

    How to convert Number to Time in Table

    It is showing in 12:01 etc in format I have values entered into table like 0.29, 1.34 etc. I need to convert these values to mm:ss for few of the names where type is Time I tried to use both the formula above which didnot work and showing in 12:00 format
  11. S

    How to find privious month,day,week,qtr data

    I am having difficulty in selecting crateria. I need to display last 12 moths, weeks, days, qts data for current year as well as prior year. Can anybody helps me on this ??
  12. S

    How to find privious month,day,week,qtr data

    Thank you for your reply. I am able to display month values. But I am having problem in filtering between Current year and prior year. For Ex: If calculating Monthly values, Current year should give only upto 11months data where as prior should give for the entire previous year I am...
  13. S

    How to find privious month,day,week,qtr data

    I have a table with date and amount values. We are running history reports. I need to calculate Daily, Weekly, Monthly, Quartely data for current year and prior year for last 12 days, weeks, months and quarters Please find the attachement Date Conversion to see my requirement How to...
  14. S

    How to convert Number to Time in Table

    I need to find mm:ss from a number..There are no hours..Time should be in mm:ss
  15. S

    How to convert Number to Time in Table

    I have a table with Product Name, Product ID, Product Type. Product Type is P(Percentage), T(Time). We have a form to enter data into this table. Few products are with type T. Time should be mm:ss format. We can enter the value only as number in Form. i.e if we enter 93 it should be converted...
  16. S

    How to display date into required format

    I have date in mm/dd/yyyy format. Now I need to display this date into dd-mon format. How to do that ???
  17. S

    Get previous months data when running in current month

    I need that for Reporting. I need to develop a Business Objects report
  18. S

    Get previous months data when running in current month

    How to store that information in Ctime column ?? Can you send me the query
  19. S

    Get previous months data when running in current month

    I need to find out the document's most recent status whether it is scheduled,approved or delivered. I can get the recent information based on the timestamp . So within 1/1000 sec also the status can be changed Does access can hold milli second information ?? If so, how can I define that ??
Back
Top Bottom