Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Multiply Column by Grid

madisons82
5 - Atom

Hello, 

 

I am trying to solve a problem where I need to multiply the value in the column "Annual Value" by a column I have for each date for every day in 2025. I suspect I need to use a multi-field formula but haven't had any luck yet. Essentially, I have a data table of many stores along the rows, the predicted annual volume for each store, and then the % of annual volume in each of 365 additional columns that represent each day of 2025. I need to estimate the annual volume on a daily level without 365 separate calculations (lol). Any help hugely appreciated!!

 

This is an over simplified example of the data but there is a column for each day of the year:

 

 
StoreAnnual Value1/1/20251/2/20251/3/2025
Store 16541.20%0.83%0.95%
Store 211841.20%0.83%0.95%
Store 32361.20%0.83%0.95%
Store 45971.20%0.83%0.95%
Store 513871.20%0.83%0.95%
1 REPLY 1
flying008
15 - Aurora

Hi, @madisons82 

 

Try this formula and change output type to Double :

 

[Annual Value] * ToNumber(Replace([_CurrentField_], '%', '')) / 100

 

 

 

录制_2024_12_07_09_02_46_601.gif

 

Labels
Top Solution Authors