我需要创建一个Access成绩表。

huangapple go评论58阅读模式
英文:

I need to make Access grades table

问题

IIf([Успішність]>=0 And [Успішність]<=34;"F";IIf([Успішність]>=35 And [Успішність]<=59;"Fx";IIf([Успішність]>=60 And [Успішність]<=63;"E";IIf([Успішність]>=64 And [Успішність]<=73;"D";IIf([Успішність]>=74 And [Успішність]<=81;"C";IIf([Успішність]>=82 And [Успішність]<=89;"B";IIf([Успішність]>=90 And [Успішність]<=100;"A";"0"))))))) it`s ChatGPT

英文:

i need to create iif code for ms access, so if number count takes start from 0 and to 34 it will be F grade. Field Успішність is for count from 0-100 and field Оцінка is for grade from F (and Fx) to A. 0-34 F, 35-59 Fx, 60-63 E, 64-73 D, 74-81 C, 82-89 B, 90-100 A. numbers 0-100 is [Успішність] and grades F-A is [Оцінка].

IIf([Успішність]>=0 And [Успішність]<=34;"F";IIf([Успішність]>=35 And [Успішність]<=59;"Fx";IIf([Успішність]>=60 And [Успішність]<=63;"E";IIf([Успішність]>=64 And [Успішність]<=73;"D";IIf([Успішність]>=74 And [Успішність]<=81;"C";IIf([Успішність]>=82 And [Успішність]<=89;"B";IIf([Успішність]>=90 And [Успішність]<=100;"A";"0"))))))) it`s ChatGPT

答案1

得分: 1

Rather than starting at the bottom and working up, work from the top down:

如果[成功率] >= 90,则返回"A";如果[成功率] >= 82,则返回"B";如果[成功率] >= 74,则返回"C";如果[成功率] >= 64,则返回"D";如果[成功率] >= 60,则返回"E";如果[成功率] >= 35,则返回"Fx";如果[成功率] >= 0,则返回"F";否则返回空字符串。

我需要创建一个Access成绩表。

我需要创建一个Access成绩表。

英文:

Rather than starting at the bottom and working up, work from the top down:


IIf([[Успішність]&gt;=90,&quot;A&quot;,IIf([Успішність]&gt;=82,&quot;B&quot;,IIf([Успішність]&gt;=74,&quot;C&quot;,IIf([Успішність]&gt;=64,&quot;D&quot;,IIf([Успішність]&gt;=60,&quot;E&quot;,IIf([Успішність]&gt;=35,&quot;Fx&quot;,IIf([Успішність]&gt;=0,&quot;F&quot;,&quot;&quot;)))))))

我需要创建一个Access成绩表。

我需要创建一个Access成绩表。

huangapple
  • 本文由 发表于 2023年7月3日 15:29:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/76602672.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定