Hey guys,
I have two crosstab queries that I'm trying to calculate from. The first query, called setups, fields are AR#, setup month, count of tfile_setup. The AR# is row heading, the setup month is column heading, and count of tfile_setup is the value.
The query looks like this
AR# 1/1/2014 2/1/2014 3/1/2014 4/1/2014 430 1 2 3 1 434 1 1 1 4 435 1 4 2 3 437 2 1 5 4 438 3 6 1 2
The other query called funded has fields named AR#, setup date, and count of tfile_funded. The AR# is row heading, the setup month is column heading, and count of tfile_funded is the value.
The query looks like this
AR# 1/1/2014 2/1/2014 3/1/2014 4/1/2014 430 4 6 5 3 434 9 9 8 3 435 5 8 8 4 447 10 12 11 7 438 5 9 4 4
I'm trying to write an expression that takes the data from the second query, funded, and divide it by the second query, setups. For example, for AR# 430 in 1/1/2014, I want to divide 1 by 4, and do this for all the records. Is this possible?
Thanks!