06-27-2023 10:54 PM
Hi Team,
Could you please let me know how to convert below formula in Business view. I want to use te result of data in another formula.
OR((MIN(table.[FISCAL_YEAR])) >= 2022, NOT(ISBLANK(SUM(table.[ORDER_INTAKE])))), SUM(table.[ORDER_INTAKE]), SUM(table[OPEX_PRICE]))
06-28-2023 07:13 AM
OR will work at the row level and you have aggregation inside OR function.
One option you have is:
You can aggregate your data using resultset and then apply OR function to the output of the resultset.