tmullins Contributor

Comments

  • Your syntax for the case statement is incorrect. Based on what you have provided, the case statement should read as follows: case when 'PROVINCE_CD' = 'BC' then 'WEST' when 'PROVINCE_CD' = 'AB' then 'WEST' else 'EAST' end or more simply, case when 'PROVINCE_CD' in ('BC', 'AB') then 'WEST' else 'EAST' end
  • Hi @Z_M, Unfortunately, I have not seen a way to easily transfer ownership of a custom app without using Domo's Command Line Interface (CLI). Domo has provided easy to follow instructions for transferring ownership of an app on the Domo Developer site (Domo owner add/remove).