-
Re: Do I have the right code in my Python Script?
Check your schema in your python tile and ensure that 'ACAD_PLAN' is included in the output1 -
Re: Transforming an ETL
Hello - If you want to take an entire row from one dataset and add it to another then you need to Append rather than Join. If you're concerned about alterations to the existing ETL I would recommend …2 -
Re: Create Bar Chart with Current Month Vs Previous Month?
You can do this with period over period charts without the need for a specialized beast mode1 -
Re: Drill Path error
A couple things to note from the knowledgebase article on drill paths that may be root cause of the issue: Calculations you create using Beast Mode are inherited when you drill from one view to anoth…1 -
Re: Create Month End Date column with Year & Month columns?
There's a LAST_DAY() Function that gives the last day of the month for a given date: LAST_DAY(STR_TO_DATE(CONCAT(`Year`,`Month`),'%Y%m'))3