-
Re: New User - Help with Filling Forward Previous Incident Date
Hello @CRBrown, Providing a sample of your data would be helpful. Based on my understanding of your request, you can use the 'Group' tile to find the MAX('Citation Date') for each location and then j…1 -
Re: How can I utilize double case statements in a beastmode
Hello @Anna_Otake, I believe this is not possible with Beast Mode. ETL should be used to calculate this and create the new columns.1 -
Re: Python Tile fillna on integer column keep return 0 unless I change the column to text
Hello @verytiredgirl, Could you please try the following Python script: input1['Bill-To'] = input1['Bill-To'].map(lambda x: None if not x else x).fillna(method='ffill')1 -
Re: Is it possible to use PDP to send a card only to people that are part of the card dataset?
Hello @Chris_Phelan, I believe this is possible if you create an ETL that filters (reduces) your dataset the same way you filter your card and then use it for the PDP.1 -
Re: Year over Year Cards
Hello @calvert_schaefer, One approach, as suggested by John Le, involves using variables as a solution. However, is you want to compare Fiscal Years, this creates a huge challenge that requires a mor…1