DDRA Steampunk
New Member
- Joined
- Feb 10, 2017
- Messages
- 23
Hi End users will be just pasting the monthly report CSV into the helper template. I'm working with another company's data so I'm forbidden from just fixing the horrible format where the dollar amounts are in a sentence like "$37.84 sent to your bank account". The formula to get each numeric from the text was easy, but I have no idea how to then get it to Sum without using some kind of helper column. I believe there is a VBA function to just run the entire range through the formula and aggregate the results. I could be wrong though! Would also accept a formula based solution.
Number of pages is fixed to 15: Index, Terminology, Summary, 12 x Month page
Columns of Data are fixed to A through H: Date, Type, Info, Currency (could be USD or CAD), Amount, Fees & Taxes, Net Balance
Rows are expandable, clients may have anything between 0 and theoretically infinite number of transactions
Formula currently used to extract the Numeric Value: =(TRIM(MID(C3,FIND("$",C3)+1,FIND(" ",C3)-FIND("$",C3)-1)))
Current Sum example: =SUMIF(January!$B:$B,"deposit",January!$F:$F)
Side note, I think the reason I can't pop the month name in by Indirect is because it's full column as Range? I've only used indirect looking for a particular cell so limited experience.
Number of pages is fixed to 15: Index, Terminology, Summary, 12 x Month page
Columns of Data are fixed to A through H: Date, Type, Info, Currency (could be USD or CAD), Amount, Fees & Taxes, Net Balance
Rows are expandable, clients may have anything between 0 and theoretically infinite number of transactions
Formula currently used to extract the Numeric Value: =(TRIM(MID(C3,FIND("$",C3)+1,FIND(" ",C3)-FIND("$",C3)-1)))
Current Sum example: =SUMIF(January!$B:$B,"deposit",January!$F:$F)
Side note, I think the reason I can't pop the month name in by Indirect is because it's full column as Range? I've only used indirect looking for a particular cell so limited experience.