AntonioPerera
Vendor
My problem is as follows :
I have a a database of chart of accounts with the following 3 segments:
10000-000-A
10000-100-A
10000-200-A
11000-100-B
11000-900-B
Account - Department - Category
I need to sort them by the following criteria :
01 All items ending in category "R" and all items ending in categories "F" & "T" in the range of departments "700" to "799"
See formula below
02 All items in Category C
03 All items in category Z
//01
if {?YEAR YYYY} = "2010" and
{@category} in ["R"]
and
({@dept} like "7*")
or
{@category} in ["F","T"])
then
01
My formula for 01 is not giving the desired results.
Can you see anything wrong ?
I have a a database of chart of accounts with the following 3 segments:
10000-000-A
10000-100-A
10000-200-A
11000-100-B
11000-900-B
Account - Department - Category
I need to sort them by the following criteria :
01 All items ending in category "R" and all items ending in categories "F" & "T" in the range of departments "700" to "799"
See formula below
02 All items in Category C
03 All items in category Z
//01
if {?YEAR YYYY} = "2010" and
{@category} in ["R"]
and
({@dept} like "7*")
or
{@category} in ["F","T"])
then
01
My formula for 01 is not giving the desired results.
Can you see anything wrong ?