Comment has been collapsed.
I think you want this (or something close to this?)
=IF(D13<60,"neprospěl",IF(D13<76,"prospěl",IF(D13<86,"dobře",IF(D13<96,"chvalitebně",IF(D13<106,"výborně","other")))))
Comment has been collapsed.
do note, anything from 60 to 76 will return prospěl
in the initial formulation you had 66:75. unsure if that was intended or not as all others were continuous ranges
Comment has been collapsed.
you can use >= if you like, but the logic would have to be reversed. The syntax you were initially using was not compatible with excel.
=IF(D13<60,"neprospěl",IF(D13<76,"prospěl",IF(D13<86,"dobře",IF(D13<96,"chvalitebně",IF(D13<106,"výborně","other")))))
could also be expressed (if I did it right)
=IF(D13>=106,"other",IF(D13>=96,"výborně",IF(D13>=86,"chvalitebně",IF(D13>=76,"dobře",IF(D13>=60,"prospěl","neprospěl")))))
Comment has been collapsed.
16,487 Comments - Last post 1 minute ago by Hassat
81 Comments - Last post 3 minutes ago by Gurthfin
5 Comments - Last post 20 minutes ago by GoatPimp
13 Comments - Last post 58 minutes ago by Chris76de
5 Comments - Last post 1 hour ago by FranEldense
168 Comments - Last post 8 hours ago by Taal5
17 Comments - Last post 10 hours ago by FluffyKittenChan
40 Comments - Last post 4 minutes ago by SolvedPack
28 Comments - Last post 10 minutes ago by Ottah
38 Comments - Last post 17 minutes ago by ngoclong19
93 Comments - Last post 17 minutes ago by OneNonLy
934 Comments - Last post 20 minutes ago by JMM72
26 Comments - Last post 21 minutes ago by Oshyer
424 Comments - Last post 23 minutes ago by n3xvs
Hi, mates! Can u please help me to fix problem with if function, please?help will be much apreciated :)
=IF(D13<60;"neprospěl";IF(D13>66:76;"prospěl";IF(D13>76:86;"dobře";IF(D13>86:96;"chvalitebně";IF(D13>96:106;"výborně";)))))
Why it not working?
Error code: #Value!
Thanks for any help! :)
Comment has been collapsed.