I have a table with monthly investment values by region and metrics, I need to distribute those monthly investment values into daily values. Any suggestions how I can achieve it.
Solved! Go to Solution.
Allí, @Syndicate_Admin
Pruebe fórmulas como las siguientes:
Year_month = 'Table'[Month]&" "&'Table'[Year]
Number of days = DAY(EOMONTH('Table'[Year_month],0))
daily value = 'Table'[Investment]/'Table'[Number of days]
Saludos
Equipo de soporte de la comunidad _ Eason
Allí, @Syndicate_Admin
Pruebe fórmulas como las siguientes:
Year_month = 'Table'[Month]&" "&'Table'[Year]
Number of days = DAY(EOMONTH('Table'[Year_month],0))
daily value = 'Table'[Investment]/'Table'[Number of days]
Saludos
Equipo de soporte de la comunidad _ Eason