Hi, I'm using CR2008/ BO Universe XI
The situation is I need to calculate hour rates (defined) against individual resource grades, which are different whether India/ Rest of World on time spent on working on projects (actuals). I have something like this:
select if {@Country Convert} <> "India"
case "Grade 1" : "31.73"
case "Grade 2" : "42.75"
case "Grade 3" : "55.95"
case "Grade 4" : "78.99"
case "Grade 5" : "110.28"
case "Grade 6" : "140.51"
else if {@Country Convert} = "India"
case "Grade 1" : "25.76"
case "Grade 2.1" : "32.50"
case "Grade 2.2" : "32.50"
case "Grade 3.1" : "44.78"
case "Grade 3.2" : "44.78"
case "Grade 4" : "53.81"
else "0"
This should be obvious to me, but I've been looking at it too long now to see what I'm missing. All help appreciated. Thanks B
The situation is I need to calculate hour rates (defined) against individual resource grades, which are different whether India/ Rest of World on time spent on working on projects (actuals). I have something like this:
select if {@Country Convert} <> "India"
case "Grade 1" : "31.73"
case "Grade 2" : "42.75"
case "Grade 3" : "55.95"
case "Grade 4" : "78.99"
case "Grade 5" : "110.28"
case "Grade 6" : "140.51"
else if {@Country Convert} = "India"
case "Grade 1" : "25.76"
case "Grade 2.1" : "32.50"
case "Grade 2.2" : "32.50"
case "Grade 3.1" : "44.78"
case "Grade 3.2" : "44.78"
case "Grade 4" : "53.81"
else "0"
This should be obvious to me, but I've been looking at it too long now to see what I'm missing. All help appreciated. Thanks B