Thanks in advance for any assistance. I'm trying to learn but this one's got me.
Here's what I have:
Curdat these are my date and are labeled M_01, M_02, etx
Reprice_Freq_Mult = Either M (month) or D (Day)
Reprice_Freq = a number
I need an expression where
if curdat=M_01 and Reprice_Freq_Mult='D' then Reprice_Freq but Reprice_Freq_Mult='M' then Reprice_Freq*30
This is what I have so far but I'm not sure where to put the curdat. I'm not even sure if this works because I know it's not what I need so I haven't run it yet. X_01: Sum(IIf([reprice_freq_mult]='D',[Reprice_freq],0)) Or Sum(IIf([reprice_freq_mult]='M',[Reprice_Freq]*30,0))
Here's what I have:
Curdat these are my date and are labeled M_01, M_02, etx
Reprice_Freq_Mult = Either M (month) or D (Day)
Reprice_Freq = a number
I need an expression where
if curdat=M_01 and Reprice_Freq_Mult='D' then Reprice_Freq but Reprice_Freq_Mult='M' then Reprice_Freq*30
This is what I have so far but I'm not sure where to put the curdat. I'm not even sure if this works because I know it's not what I need so I haven't run it yet. X_01: Sum(IIf([reprice_freq_mult]='D',[Reprice_freq],0)) Or Sum(IIf([reprice_freq_mult]='M',[Reprice_Freq]*30,0))