Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,788| Members 17,820, Newest waheguruhelpme| Online 219
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » putting different dates together into a single group

putting different dates together into a single group

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
Single mums group needs aid Narayanjot Kaur Community Out-Reach 1 30-Dec-2009 21:51 PM
Merge data into single Word doc from single Access record CW Information Technology 3 28-Jul-2006 08:35 AM
Putting Your Faith in God Soul_jyot Spiritual Articles 1 15-Feb-2006 17:26 PM


Tags
putting, different, dates, together, single, group
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:24 AM
scubadiver's Avatar scubadiver
Guest
 
Posts: n/a
   
   
putting different dates together into a single group

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
let me explain:

I have a query that lists enquiries (one enquiry per record). Each of these
enquiries were on a certain date. The list will start on a Friday and end on
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11831-putting-different-dates-together-into-single.html
a thursday.

I have created a column in the query so that "1" is equal to Friday and so
up to "7" equalling thursday.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831

What I need to do is change the "2" and "3" into a "4" and leave 1,5,6 and 7
alone.

Or is there an easier way?



*








 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:24 AM
'69 Camaro's Avatar '69 Camaro
Guest
 
Posts: n/a
   
   
Re: putting different dates together into a single group

Hi.

> What I need to do is change the "2" and "3" into a "4" and leave 1,5,6 and
> 7
> alone.


Use an update query. Try:

UPDATE tblStuff
SET EnquiryDay = 4
WHERE (EnquiryDay IN (2, 3))

.. . . where tblStuff is the name of the table, and EnquiryDay is the name of
the column with the numbers corresponding to the days of the week.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.


"scubadiver" wrote in message
news:B047257D-6F4B-432C-914C-E6642BF435CF@microsoft.com...
> let me explain:
>
> I have a query that lists enquiries (one enquiry per record). Each of
> these
> enquiries were on a certain date. The list will start on a Friday and end
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
> on
> a thursday.
>
> I have created a column in the query so that "1" is equal to Friday and so
> up to "7" equalling thursday.
>
> What I need to do is change the "2" and "3" into a "4" and leave 1,5,6 and
> 7
> alone.
>
> Or is there an easier way?
>
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:24 AM
Immanuel Sibero's Avatar Immanuel Sibero
Guest
 
Posts: n/a
   
   
Re: putting different dates together into a single group


Same idea but if dealing with a query then just add another column to the
query and enter the following:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831

=iif([EnquiryDay] IN ("2","3"),"4",[EnquiryDay])


Immanuel Sibero



"'69 Camaro" wrote in
message news:O1spGvTlGHA.1240@TK2MSFTNGP05.phx.gbl...
> Hi.
>
> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6

and
> > 7
> > alone.

>
> Use an update query. Try:
>
> UPDATE tblStuff
> SET EnquiryDay = 4
> WHERE (EnquiryDay IN (2, 3))
>
> . . . where tblStuff is the name of the table, and EnquiryDay is the name

of
> the column with the numbers corresponding to the days of the week.
>
> HTH.
> Gunny
>
> See http://www.QBuilt.com for all your database needs.
> See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
> http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
> info.
>
>
> "scubadiver" wrote in message
> news:B047257D-6F4B-432C-914C-E6642BF435CF@microsoft.com...
> > let me explain:
> >
> > I have a query that lists enquiries (one enquiry per record). Each of
> > these
> > enquiries were on a certain date. The list will start on a Friday and

end
> > on
> > a thursday.
> >
> > I have created a column in the query so that "1" is equal to Friday and

so
> > up to "7" equalling thursday.
> >
> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6

and
> > 7
> > alone.
> >
> > Or is there an easier way?
> >
> >

>
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:24 AM
scubadiver's Avatar scubadiver
Guest
 
Posts: n/a
   
   
Re: putting different dates together into a single group

I used a similar one to Immanuel:

Group: IIf(([diff]=2) Or ([diff]=3),4,[diff])
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831

and it does work but I realise its not helpful for producing a real date to
put into a report.

So using your idea where exactly do I put the code but using real dates (if
possible)

cheers.



"'69 Camaro" wrote:

> Hi.
>
> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6 and
> > 7
> > alone.

>
> Use an update query. Try:
>
> UPDATE tblStuff
> SET EnquiryDay = 4
> WHERE (EnquiryDay IN (2, 3))
>
> .. . . where tblStuff is the name of the table, and EnquiryDay is the name of
> the column with the numbers corresponding to the days of the week.
>
> HTH.
> Gunny
>
> See http://www.QBuilt.com for all your database needs.
> See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
> http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
> info.
>
>
> "scubadiver" wrote in message
> news:B047257D-6F4B-432C-914C-E6642BF435CF@microsoft.com...
> > let me explain:
> >
> > I have a query that lists enquiries (one enquiry per record). Each of
> > these
> > enquiries were on a certain date. The list will start on a Friday and end
> > on
> > a thursday.
> >
> > I have created a column in the query so that "1" is equal to Friday and so
> > up to "7" equalling thursday.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
> >
> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6 and
> > 7
> > alone.
> >
> > Or is there an easier way?
> >
> >

>
>
>

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:24 AM
'69 Camaro's Avatar '69 Camaro
Guest
 
Posts: n/a
   
   
Re: putting different dates together into a single group

  Donate Today!  
Hi.

> but I realise its not helpful for producing a real date to
> put into a report.


I'm not sure I understand your question. Do you mean that you want to
convert the numbers 1 through 7 to days of the week, i.e., "Wednesday" or
replace them with an actual date, such as 6/21/2006?

> So using your idea where exactly do I put the code but using real dates
> (if
> possible)


First, make a backup of the table, just in case something goes wrong,
because the update query will permanently change the values in that column.
(I'm assuming that this is what you want to do.) Create a new query and go
to the SQL View pane (View -> SQL View menu), then paste the code into the
window. Replace the table name and column name with the names of your table
and column. Hold off on the next step (running the query) until we clarify
exactly what you mean by "using real dates."

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.


"scubadiver" wrote in message
news:88F69204-9850-40EB-86A6-2E534E1DF4A3@microsoft.com...
>I used a similar one to Immanuel:
>
> Group: IIf(([diff]=2) Or ([diff]=3),4,[diff])
>
> and it does work but I realise its not helpful for producing a real date
> to
> put into a report.
>
> So using your idea where exactly do I put the code but using real dates
> (if
> possible)
>
> cheers.
>
>
>
> "'69 Camaro" wrote:
>
>> Hi.
>>
>> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6
>> > and
>> > 7
>> > alone.

>>
>> Use an update query. Try:
>>
>> UPDATE tblStuff
>> SET EnquiryDay = 4
>> WHERE (EnquiryDay IN (2, 3))
>>
>> .. . . where tblStuff is the name of the table, and EnquiryDay is the
>> name of
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
>> the column with the numbers corresponding to the days of the week.
>>
>> HTH.
>> Gunny
>>
>> See http://www.QBuilt.com for all your database needs.
>> See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
>> http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11831
>> info.
>>
>>
>> "scubadiver" wrote in message
>> news:B047257D-6F4B-432C-914C-E6642BF435CF@microsoft.com...
>> > let me explain:
>> >
>> > I have a query that lists enquiries (one enquiry per record). Each of
>> > these
>> > enquiries were on a certain date. The list will start on a Friday and
>> > end
>> > on
>> > a thursday.
>> >
>> > I have created a column in the query so that "1" is equal to Friday and
>> > so
>> > up to "7" equalling thursday.
>> >
>> > What I need to do is change the "2" and "3" into a "4" and leave 1,5,6
>> > and
>> > 7
>> > alone.
>> >
>> > Or is there an easier way?
>> >
>> >

>>
>>
>>



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 06:52 AM
21 Replies, 319 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 72 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 45 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 112 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,833 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 225 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 39 Views
sikhism How important is Matha...
By Ishna
Yesterday 19:05 PM
58 Replies, 1,026 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 62 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 43 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 45 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 408 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 46 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 07:34 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.51254 seconds with 30 queries