My Stuff
Comments
-
To get this to work you need a custom 'Item' search with NO criteria and 'Component Item' as an available filter. You also need to tick the 'Available as Sublist' box at the top ... and you need some result fields (I have Name, Display Name, Description, Base Price etc..) Once you have your search you need to use it to set…
-
Thanks Dave! I should have been more specific: I need the count of contracts totaled for this month and two months ago for each coach - which is why I had the coaches grouped. Any ideas on the two formulas for grouping the different time frames? Thanks! Try this (remember to replace STARTDATE with your actual start date…
-
Do I have the syntax right on this expression? case when INSTR(TO_CHAR({trandate}) , TO_CHAR({today}, 'fmYYYY') > 0 then {amount} else 0 end If you are just looking to pull out Transactions from this year you could just use a date filter. Otherwise, to fix your formula you need to provide a format for the {trandate} to…
-
I am trying to use the formula below, but keep getting an invalid expression error. I'm not sure what I am doing wrong. It works if I remove the transaction date section, but when I put it back in it fails. case when {transaction.trandate}>LAST_DAY({today},-1) and {transaction.type}='Cash Refund' or…