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

   
                                                                     Your Banner Here!    

Forms and/or Reports Question

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
Question for All Who Question the Authenticity of the Sikh Faith simpy Hinduism 11 11-Apr-2011 16:06 PM
Locking Queries, Forms and Reports SailFL Information Technology 4 19-Nov-2005 21:59 PM
Which App to use, Forms Question? nastech Information Technology 2 17-Nov-2005 18:02 PM
How to find reports/forms that use query (Access 2000 or 2003) Lyn Crosby Information Technology 2 10-Nov-2005 21:08 PM
Securing Changes - Forms/Queries/Reports etc SCHNYDES Information Technology 0 03-Nov-2005 11:35 AM


Tags
and or or, andor, forms, question, reports
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:39 AM
TAWise's Avatar TAWise
Guest
 
Posts: n/a
   
   
Forms and/or Reports Question

  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
My database lists the 700 employees in a particular division. There are 48
organizations within that division and an employee could support one, two,
three, or four organizations. I have set up an org table for the 48 orgs and
created a roster table and form using the orgs table as four separate
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/13748-forms-and-or-reports-question.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
dropdown boxes to be able to choose choose the one, two, three, or four orgs
supported for each employee. All of this works fine. Problem: I would like
to add a field on the roster form or roster report that captures the one,
two, three, or four selections made for the orgs. However, all I get is the
ID numbers and not the actual orgs that were selected. I am using control
=[Org1]&[Org2]...etc. I have tried changing column counts, bound column, and
even tried changing fields from numbers to text and text to numbers. Any
help would be appreciated.



 
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:39 AM
Arvin Meyer [MVP]'s Avatar Arvin Meyer [MVP]
Guest
 
Posts: n/a
   
   
Re: Forms and/or Reports Question

Your design is not relational. You need 3 tables, not 2.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748

tblEmployees
EmployeeID
LastName
etc.

tblOrganizations
OrganizationID
OrganizationName
etc.

tblEmployeeOrgs
EmployeeID
OrganizationID

Now your forms will be Mainform/Subform design and can be view either as the
Employee with Organizations. or as an Organization with Employees.

The suborm will have a combo box (dropdown) with 2 or more columns, the
first of which will be the ID value and its width should be set to 0 (zero)
to hide it.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access


"TAWise" wrote in message
news:06DB0EA0-288A-4D56-99D9-04BA3A6DD81B@microsoft.com...
> My database lists the 700 employees in a particular division. There are
> 48
> organizations within that division and an employee could support one, two,
> three, or four organizations. I have set up an org table for the 48 orgs
> and
> created a roster table and form using the orgs table as four separate
> dropdown boxes to be able to choose choose the one, two, three, or four
> orgs
> supported for each employee. All of this works fine. Problem: I would
> like
> to add a field on the roster form or roster report that captures the one,
> two, three, or four selections made for the orgs. However, all I get is
> the
> ID numbers and not the actual orgs that were selected. I am using control
> =[Org1]&[Org2]...etc. I have tried changing column counts, bound column,
> and
> even tried changing fields from numbers to text and text to numbers. Any
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
> help would be appreciated.



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:39 AM
TAWise's Avatar TAWise
Guest
 
Posts: n/a
   
   
Re: Forms and/or Reports Question

Thank you. I will re-design.

"Arvin Meyer [MVP]" wrote:

> Your design is not relational. You need 3 tables, not 2.
>
> tblEmployees
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
> EmployeeID
> LastName
> etc.
>
> tblOrganizations
> OrganizationID
> OrganizationName
> etc.
>
> tblEmployeeOrgs
> EmployeeID
> OrganizationID
>
> Now your forms will be Mainform/Subform design and can be view either as the
> Employee with Organizations. or as an Organization with Employees.
>
> The suborm will have a combo box (dropdown) with 2 or more columns, the
> first of which will be the ID value and its width should be set to 0 (zero)
> to hide it.
> --
> Arvin Meyer, MCP, MVP
> Microsoft Access
> Free Access downloads
> http://www.datastrat.com
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
> http://www.mvps.org/access
>
>
> "TAWise" wrote in message
> news:06DB0EA0-288A-4D56-99D9-04BA3A6DD81B@microsoft.com...
> > My database lists the 700 employees in a particular division. There are
> > 48
> > organizations within that division and an employee could support one, two,
> > three, or four organizations. I have set up an org table for the 48 orgs
> > and
> > created a roster table and form using the orgs table as four separate
> > dropdown boxes to be able to choose choose the one, two, three, or four
> > orgs
> > supported for each employee. All of this works fine. Problem: I would
> > like
> > to add a field on the roster form or roster report that captures the one,
> > two, three, or four selections made for the orgs. However, all I get is
> > the
> > ID numbers and not the actual orgs that were selected. I am using control
> > =[Org1]&[Org2]...etc. I have tried changing column counts, bound column,
> > and
> > even tried changing fields from numbers to text and text to numbers. Any
> > help would be appreciated.

>
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:39 AM
TAWise's Avatar TAWise
Guest
 
Posts: n/a
   
   
RE: Forms and/or Reports Question

I made the recommended changes, but I still have the same type of problem.
If an employee supports two or more orgs, the Organization Form with the
Employees subform only recognizes the first org that was selected for that
employee. It does not capture the additional orgs (2, 3, or 4) that were
selected for that employee. Also, I still cannot get a report to accept the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
actual org numbers...it still will only give me the ID numbers.

Any advice is appreciated.



"TAWise" wrote:

> My database lists the 700 employees in a particular division. There are 48
> organizations within that division and an employee could support one, two,
> three, or four organizations. I have set up an org table for the 48 orgs and
> created a roster table and form using the orgs table as four separate
> dropdown boxes to be able to choose choose the one, two, three, or four orgs
> supported for each employee. All of this works fine. Problem: I would like
> to add a field on the roster form or roster report that captures the one,
> two, three, or four selections made for the orgs. However, all I get is the
> ID numbers and not the actual orgs that were selected. I am using control
> =[Org1]&[Org2]...etc. I have tried changing column counts, bound column, and
> even tried changing fields from numbers to text and text to numbers. Any
> help would be appreciated.

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:40 AM
Arvin Meyer [MVP]'s Avatar Arvin Meyer [MVP]
Guest
 
Posts: n/a
   
   
Re: Forms and/or Reports Question

Use a query, to supply the values for the report.

In the join table, the one I identified as:

tblEmployeeOrgs
EmployeeID
OrganizationID

you need 1 record for each combination of Employee and Organization. There
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
is a many-to-many relationship between the 2 primary tables (which is the
reason you need the join table). I made a small demo that will show you how
it works and put it up on the Access MVP website:

http://www.accessmvp.com/Arvin/ManyToMany.zip
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access

"TAWise" wrote in message
news:0722228E-A570-4CEB-9CC6-8C7B2146EEEA@microsoft.com...
>I made the recommended changes, but I still have the same type of problem.
> If an employee supports two or more orgs, the Organization Form with the
> Employees subform only recognizes the first org that was selected for that
> employee. It does not capture the additional orgs (2, 3, or 4) that were
> selected for that employee. Also, I still cannot get a report to accept
> the
> actual org numbers...it still will only give me the ID numbers.
>
> Any advice is appreciated.
>
>
>
> "TAWise" wrote:
>
>> My database lists the 700 employees in a particular division. There are
>> 48
>> organizations within that division and an employee could support one,
>> two,
>> three, or four organizations. I have set up an org table for the 48 orgs
>> and
>> created a roster table and form using the orgs table as four separate
>> dropdown boxes to be able to choose choose the one, two, three, or four
>> orgs
>> supported for each employee. All of this works fine. Problem: I would
>> like
>> to add a field on the roster form or roster report that captures the one,
>> two, three, or four selections made for the orgs. However, all I get is
>> the
>> ID numbers and not the actual orgs that were selected. I am using
>> control
>> =[Org1]&[Org2]...etc. I have tried changing column counts, bound column,
>> and
>> even tried changing fields from numbers to text and text to numbers. Any
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
>> help would be appreciated.



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:40 AM
TAWise's Avatar TAWise
Guest
 
Posts: n/a
   
   
Re: Forms and/or Reports Question

  Donate Today!  
Thank you again for your assistance. I have made the necessary changes and
my database works like a charm and my sanity is restored.

"Arvin Meyer [MVP]" wrote:

> Use a query, to supply the values for the report.
>
> In the join table, the one I identified as:
>
> tblEmployeeOrgs
> EmployeeID
> OrganizationID
>
> you need 1 record for each combination of Employee and Organization. There
> is a many-to-many relationship between the 2 primary tables (which is the
> reason you need the join table). I made a small demo that will show you how
> it works and put it up on the Access MVP website:
>
> http://www.accessmvp.com/Arvin/ManyToMany.zip
> --
> Arvin Meyer, MCP, MVP
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
> Microsoft Access
> Free Access downloads
> http://www.datastrat.com
> http://www.mvps.org/access
>
> "TAWise" wrote in message
> news:0722228E-A570-4CEB-9CC6-8C7B2146EEEA@microsoft.com...
> >I made the recommended changes, but I still have the same type of problem.
> > If an employee supports two or more orgs, the Organization Form with the
> > Employees subform only recognizes the first org that was selected for that
> > employee. It does not capture the additional orgs (2, 3, or 4) that were
> > selected for that employee. Also, I still cannot get a report to accept
> > the
> > actual org numbers...it still will only give me the ID numbers.
> >
> > Any advice is appreciated.
> >
> >
> >
> > "TAWise" wrote:
> >
> >> My database lists the 700 employees in a particular division. There are
> >> 48
> >> organizations within that division and an employee could support one,
> >> two,
> >> three, or four organizations. I have set up an org table for the 48 orgs
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13748
> >> and
> >> created a roster table and form using the orgs table as four separate
> >> dropdown boxes to be able to choose choose the one, two, three, or four
> >> orgs
> >> supported for each employee. All of this works fine. Problem: I would
> >> like
> >> to add a field on the roster form or roster report that captures the one,
> >> two, three, or four selections made for the orgs. However, all I get is
> >> the
> >> ID numbers and not the actual orgs that were selected. I am using
> >> control
> >> =[Org1]&[Org2]...etc. I have tried changing column counts, bound column,
> >> and
> >> even tried changing fields from numbers to text and text to numbers. Any
> >> help would be appreciated.

>
>
>

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 08:46 AM
22 Replies, 335 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,038 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 81 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 116 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 229 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, 44 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 414 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 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 09:41 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.98032 seconds with 30 queries