PC Review


Reply
Thread Tools Rate Thread

Auto rating a client with collected points base a Rating table

 
 
Simon
Guest
Posts: n/a
 
      15th Oct 2004
Hi,
I have access tables collected points from my client and want to auto auto
rate them base on a rating table, but rating field I can manual over write
it if I want to. How to set the code?
2 table are: ClientInfo table and Rating table
ClientInfo table with 3 fields:
ClientID Point Rating
1 10 A
2 05 A
3 11 B
4 50 C <----- over writed from F
5 32 D

Rating table with 3 fields: MinRate and MaxRate from 1 to 100 may change
value from times, field SetRate values from A to Z
SetRate MinRate MaxRate
A 01 10
B 11 20
C 21 30
D 31 35
E 36 40
F 41 50

Thanks in advance.
Simon



 
Reply With Quote
 
 
 
 
Michel Walsh
Guest
Posts: n/a
 
      18th Oct 2004
Hi,


SELECT ClientID, POIN, SetRate
FROM Clients INNER JOIN Rates
ON Clients.Rating BETWEEN Rates.MinRate AND Rates.MaxRate



Hoping it may help,
Vanderghast, Access MVP

"Simon" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
> I have access tables collected points from my client and want to auto auto
> rate them base on a rating table, but rating field I can manual over write
> it if I want to. How to set the code?
> 2 table are: ClientInfo table and Rating table
> ClientInfo table with 3 fields:
> ClientID Point Rating
> 1 10 A
> 2 05 A
> 3 11 B
> 4 50 C <----- over writed from F
> 5 32 D
>
> Rating table with 3 fields: MinRate and MaxRate from 1 to 100 may change
> value from times, field SetRate values from A to Z
> SetRate MinRate MaxRate
> A 01 10
> B 11 20
> C 21 30
> D 31 35
> E 36 40
> F 41 50
>
> Thanks in advance.
> Simon
>
>
>



 
Reply With Quote
 
=?Utf-8?B?U2ltb24=?=
Guest
Posts: n/a
 
      20th Oct 2004
code not work in queries, How?????

"Michel Walsh" wrote:

> Hi,
>
>
> SELECT ClientID, POIN, SetRate
> FROM Clients INNER JOIN Rates
> ON Clients.Rating BETWEEN Rates.MinRate AND Rates.MaxRate
>
>
>
> Hoping it may help,
> Vanderghast, Access MVP
>
> "Simon" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Hi,
> > I have access tables collected points from my client and want to auto auto
> > rate them base on a rating table, but rating field I can manual over write
> > it if I want to. How to set the code?
> > 2 table are: ClientInfo table and Rating table
> > ClientInfo table with 3 fields:
> > ClientID Point Rating
> > 1 10 A
> > 2 05 A
> > 3 11 B
> > 4 50 C <----- over writed from F
> > 5 32 D
> >
> > Rating table with 3 fields: MinRate and MaxRate from 1 to 100 may change
> > value from times, field SetRate values from A to Z
> > SetRate MinRate MaxRate
> > A 01 10
> > B 11 20
> > C 21 30
> > D 31 35
> > E 36 40
> > F 41 50
> >
> > Thanks in advance.
> > Simon
> >
> >
> >

>
>
>

 
Reply With Quote
 
Michel Walsh
Guest
Posts: n/a
 
      21st Oct 2004
Hi,

There can be some ( ) that are required. What is the SQL statement?

Hoping it may help,
Vanderghast, Access MVP


"Simon" <(E-Mail Removed)> wrote in message
news:4A9D43FD-A042-4854-9694-(E-Mail Removed)...
> code not work in queries, How?????
>
> "Michel Walsh" wrote:
>
>> Hi,
>>
>>
>> SELECT ClientID, POIN, SetRate
>> FROM Clients INNER JOIN Rates
>> ON Clients.Rating BETWEEN Rates.MinRate AND Rates.MaxRate
>>
>>
>>
>> Hoping it may help,
>> Vanderghast, Access MVP
>>
>> "Simon" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > Hi,
>> > I have access tables collected points from my client and want to auto
>> > auto
>> > rate them base on a rating table, but rating field I can manual over
>> > write
>> > it if I want to. How to set the code?
>> > 2 table are: ClientInfo table and Rating table
>> > ClientInfo table with 3 fields:
>> > ClientID Point Rating
>> > 1 10 A
>> > 2 05 A
>> > 3 11 B
>> > 4 50 C <----- over writed from F
>> > 5 32 D
>> >
>> > Rating table with 3 fields: MinRate and MaxRate from 1 to 100 may
>> > change
>> > value from times, field SetRate values from A to Z
>> > SetRate MinRate MaxRate
>> > A 01 10
>> > B 11 20
>> > C 21 30
>> > D 31 35
>> > E 36 40
>> > F 41 50
>> >
>> > Thanks in advance.
>> > Simon
>> >
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?c2ltb24=?=
Guest
Posts: n/a
 
      28th Feb 2005
SELECT ClientID, POIN, SetRate
FROM Clients INNER JOIN Rates
ON Clients.Rating BETWEEN Rates.MinRate AND Rates.MaxRate

"Michel Walsh" wrote:

> Hi,
>
> There can be some ( ) that are required. What is the SQL statement?
>
> Hoping it may help,
> Vanderghast, Access MVP
>
>
> "Simon" <(E-Mail Removed)> wrote in message
> news:4A9D43FD-A042-4854-9694-(E-Mail Removed)...
> > code not work in queries, How?????
> >
> > "Michel Walsh" wrote:
> >
> >> Hi,
> >>
> >>
> >> SELECT ClientID, POIN, SetRate
> >> FROM Clients INNER JOIN Rates
> >> ON Clients.Rating BETWEEN Rates.MinRate AND Rates.MaxRate
> >>
> >>
> >>
> >> Hoping it may help,
> >> Vanderghast, Access MVP
> >>
> >> "Simon" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> > Hi,
> >> > I have access tables collected points from my client and want to auto
> >> > auto
> >> > rate them base on a rating table, but rating field I can manual over
> >> > write
> >> > it if I want to. How to set the code?
> >> > 2 table are: ClientInfo table and Rating table
> >> > ClientInfo table with 3 fields:
> >> > ClientID Point Rating
> >> > 1 10 A
> >> > 2 05 A
> >> > 3 11 B
> >> > 4 50 C <----- over writed from F
> >> > 5 32 D
> >> >
> >> > Rating table with 3 fields: MinRate and MaxRate from 1 to 100 may
> >> > change
> >> > value from times, field SetRate values from A to Z
> >> > SetRate MinRate MaxRate
> >> > A 01 10
> >> > B 11 20
> >> > C 21 30
> >> > D 31 35
> >> > E 36 40
> >> > F 41 50
> >> >
> >> > Thanks in advance.
> >> > Simon
> >> >
> >> >
> >> >
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Compute a rating of a mtd average compared to a rating scale reddy Microsoft Excel Misc 0 12th Jan 2009 06:33 PM
Auto-rating Diamond via AccessMonster.com Microsoft Access 7 16th Aug 2006 02:18 PM
Can a CPU's FSB rating exceed the MOBO's FSB rating and still operate? blargg27@gmail.com Computer Hardware 4 21st Oct 2005 12:16 AM
Auto rating a client with collected points base in a rating table Simon W Microsoft Access Form Coding 2 8th Nov 2004 09:45 PM
Auto rate a clien with collected points base on a Rating table =?Utf-8?B?U2ltb24=?= Microsoft Access VBA Modules 0 1st Nov 2004 06:25 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:02 AM.