Hi All,
Please provide the formula for below aging.
0 < 90 days
90 >90-180 Days
180 >180 Days
Column M has the aging details.
I am attaching the file below.
Thank you in advance for the help.
Hi All,
Please provide the formula for below aging.
0 < 90 days
90 >90-180 Days
180 >180 Days
Column M has the aging details.
I am attaching the file below.
Thank you in advance for the help.
Last edited by arnab0711; 02-03-2010 at 05:34 AM.
Arnab, what do you want to do with the values in column M? Or are you trying to update other cells based on the aging value in column M?
Hi Paul,
I want a ' if ' formula where if the aging is 0 to 90 days it will show 0 < 90 days,if the the aging is 91 to 180 days it will show 90-180 Days,and so on.
Hello arnab0711,,
Try this =IF(M2<=90,"0<90",IF(M2<=180,"90<180",">180"))
The following code will replace the values in column M with their appropriate ranges:
If you don't want to use a macro, you can use a formula in an open column (like column R). In R2 put![]()
Please Login or Register to view this content.
=IF(M2>180,"> 180",IF(M2>=90,"90 - 180",IF(M2>=0,"< 90","")))
Thanks a lot for the reply,can we also have a macro for automatically creating a pivot out of it,where in the organisation name will be in the row section,the aging formula will be in the column section and sum of value in the data section.
Pivot Table thread created: http://www.excelforum.com/excel-work...utomation.html
arnab0711, please mark this particular thread SOLVED.
Originally Posted by E.F.Gubbins
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
Calculate days outstanding using =DAYS(start date,End date) eg in CELL 1A to return value in B1
0-90 days use =IF(A1<=90,B1,0)
91-180days use =IF(AND(A1<=180,A1>=91),B1,0)
181-270days use =IF(AND(A1<=270,A1>=181),B1,0)
270-360 days use =IF(AND(A1<=360,A1>=271),B1,0)
>360 days use =IF(A1>=360,B1,0)
Last edited by JAPHO; 02-11-2024 at 06:43 AM.
1. This thread is 15 years old.
2. Your answer looks like it was generated by AI, and does not answer the question, as asked.
3. Please read the yellow banner (top) about AI.
4. Thread closed.
Glenn
None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks