• Community
    • Home
    • Welcome
      • Getting Started
      • Community Memo
      • All Things Community
      • SAS Customer Recognition Awards (2024)
      • SAS Customer Recognition Awards (2023)
    • SAS Community Library
    • SAS Product Suggestions
    • Upcoming Events
    • SAS Customer Recognition Awards
    • All Recent Topics
  • Learn
    • New SAS User
    • SAS Software for Learning Community
    • Ask the Expert
    • SAS Certification
    • SAS Tips from the Community
    • SAS Training
      • Programming 1 and 2
      • Advanced Programming
      • Course Case Studies and Challenges
      • Trustworthy AI
    • SAS Global Forum Proceedings 2021
    • Tech Report Archive
    • SAS Insights Archive
  • Programming
    • SAS Programming
    • SAS Procedures
    • SAS Enterprise Guide
    • SAS Studio
    • Graphics Programming
    • ODS and Base Reporting
    • SAS Code Examples
    • SAS Web Report Studio
    • Developers
  • Analytics
    • Statistical Procedures
    • SAS Data Science
    • Mathematical Optimization, Discrete-Event Simulation, and OR
    • SAS/IML Software and Matrix Computations
    • SAS Forecasting and Econometrics
    • Streaming Analytics
    • Research and Science from SAS
  • SAS Viya
    • SAS Viya
    • SAS Viya on Microsoft Azure
    • SAS Viya Release Updates
    • Moving to SAS Viya
    • SAS Visual Analytics
    • SAS Visual Analytics Gallery
    • Your Journey to Success
    • SAS Viya Workbench
      • SAS Viya Workbench: Getting Started
      • SAS Viya Workbench Discussion
      • SAS Viya Workbench: Release Updates
  • Administration
    • Administration and Deployment
    • Architecture
    • SAS Hot Fix Announcements
    • SUGA
  • Solutions
    • Microsoft Integration with SAS
    • Decisioning
    • SAS Decision Builder
    • Data Management
    • SAS Data Maker
      • SAS Data Maker: Getting Started
      • SAS Data Maker Discussion
    • Customer Intelligence
      • SAS Customer Intelligence
      • SAS Customer Intelligence 360 Release Notes
      • SAS 360 Match
    • Risk and Fraud
      • SAS Risk Management
      • Fraud, AML and Security Intelligence
      • SAS Risk Release Updates
      • Risk & Finance Analytics
      • Insurance Fraud
      • MRM AI Governance Working Group
      • SAS Quant Community
    • SAS Health
      • SAS Health and Life Sciences
      • SAS Life Science Analytics Framework
  • Hubs
    • Regional Hubs
      • SAS User Groups
      • SAS Community Nordic
      • AML Nordic User Group
      • SAS Japan
      • SAS Korea
      • CoDe SAS German
      • SAS Plattform Netzwerk
      • SAS Brazil Community
      • SAS Spanish Community
      • SAS Users Group in Israel
      • 欢迎来到SAS中文社区!
      • Ottawa Area SAS Users' Society
      • Toronto Area SAS Users Group
      • SAS Türkiye Community
    • Special Interest Hubs
      • SAS Hacker's Hub
      • SAS Innovate 2026
      • SAS Analytics Explorers
      • The Curiosity Cup
      • SAS Inner Circle Panel
      • SAS Hackathon Team Profiles (Past)
      • SAS Explore
      • Reporting and Optimization
      • Intern Alumni Network Community
Sign In

Search the Community

Showing results for 
Search instead for 
Did you mean: 
Search Options
  • Subscribe to RSS Feed for this Search
Advanced Hide Advanced
  • Posts
  • Users
  • Places
  • Products
Advanced Search Options
Search Modifiers:
You can apply modifiers to the terms you enter in the search field.
Use quotes to search for an "exact phrase".
Use the plus sign to search for +one +or +more +words.
Use the minus sign to -exclude -certain -words from your search.
Limits search results to topics that have no replies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
46 results
Sorted by:
Best Match
  • Date
  • Views
  • Likes
  • Replies
  • Best Match

Creation the formula of Compound interest through DO loop

by Fluorite | Level 6 Purushottam in SAS Programming
‎10-26-2015 12:54 PM
‎10-26-2015 12:54 PM
Dear All,   I am new in the Analytics. I want to learn most of the concept. i am working on basics of do loop. but i am not able to create the formula for Compound interest. Kindly Help me i...
Show results in replies (1)
  • ...he type of compounding but there is the Finance function, Mort, Saving and Yield that do a variety o...

Creation the formula of Compound interest through DO loop

by Obsidian | Level 7 Shrutibhatnagar in New SAS User
‎02-19-2019 08:50 AM
‎02-19-2019 08:50 AM
data testout1; principle=5000; rate=0.10; earned=0; do year=1 to 15; do month=1 to 12; earned=earned+(principle+earned)*rate; output; end; end; run;   is it right if principle is 5000...
Show results in replies (1)
  • I didn't check your code, but you can use the COMPOUND function in SAS to do this, and then you w...

SAS EG Compounding Interest Calculation

by Calcite | Level 5 SurenderSoni in SAS Enterprise Guide
‎09-01-2020 07:37 AM
‎09-01-2020 07:37 AM
Hi All,   I have a query regarding compounding interest rates calculation using fluctuating rates. Please see attached excel where in row 11 has calculated amount using excel formulas - need t...
  • Tags:
  • calculations
  • complex
  • Compounding
  • interest
  • rates
  • sas
  • SASEG

Compound inteterest

by Calcite | Level 5 JJ71 in Statistical Procedures
‎12-02-2018 01:03 PM
‎12-02-2018 01:03 PM
Good day,  I am having to calculate compound Interest.  Below is an example of the data.  I need to calculate the interest for each month and for the year.  I know the term of t...

DO loops with regular monthly deposits and interest compounded annuall...

by Fluorite | Level 6 Magdalena56 in SAS Programming
‎11-04-2019 03:00 PM
‎11-04-2019 03:00 PM
...000 contributed monthly for 5 years 1) Calculate savings after 5 years with interest=4% compounded annually (use DO loop) 2) Calculate savings after 5 years with interest=3.9% compounded monthly (use D...

calculate amount (compounded annually & compounded monthly)

by Fluorite | Level 6 sumitbe139 in SAS Programming
‎02-19-2018 08:38 AM
‎02-19-2018 08:38 AM
Hi all SAS experts,   I am new to base SAS programming, I am calculating amount(compounded annually & compounded monthly), the detailed question is below: by using DO loops.  &n...
Show results in replies (5)
  • ...mount; int_rate=0.07; *annual interest rate; do year=1 to 25; interest_y=amount*int_rate; * T...
  • ...n calculating the total  amount at end of the term , compounded annually  as well as compounded...
  • ...alculating the total  amount at end of the term , compounded annually  as well as compounded m...
  • ...ommunities.sas.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&q=compounded...
  • ...t is effectively a simple interest rate.  The monthly compounding (within each year) just n...

interest Caculations monthly

by Fluorite | Level 6 SASUser0001 in SAS Procedures
‎04-13-2020 08:01 PM
‎04-13-2020 08:01 PM
hi I am looking to calculate interest for 6 months. where interest is compounded monthly. I have try to use do loop something like this but it doesnt calculate for 6 months. it only give me interest...
Show results in replies (1)
  • ...alculate interest for 6 months. where interest is compounded monthly. I have try to use do loop something l...

problem in creating compound intrest for months

by Fluorite | Level 6 jonty in SAS Studio
‎07-05-2017 03:53 AM
‎07-05-2017 03:53 AM
i want compound interest for eaach month till 25 years but something is wrong with my code kindly help;-     data Compound_intrest2; rate = 0.07; do years = 1 to 25; amount = 5...
Show results in replies (1)
  • ...ne possibility:   data compounded; rate = 0.07; current_amount = 500000; do years = 1 t...

Top Tips for SAS®9 Programmers Moving to SAS® Viya® Q&A, Slides, and O...

by Ammonite | Level 13 SASJedi in Ask the Expert
‎08-20-2024 09:03 AM
1 Like
‎08-20-2024 09:03 AM
1 Like
...he need for writing" macros? I have a really interesting paper on this topic that I’m delivering at the Western Users of SAS Software (WUSS) conference in Sacremento, CA.  It’s titled “Beyond M...
9TipsForSAS9ToViya.pdf (‏1,507 KB)
Labels:
  • SAS Programming
  • SAS Studio
  • SAS Viya

Introduction to Doxygen

by Calcite | Level 5 tbellmer3 in SAS Global Forum Proceedings 2021
‎03-15-2021 09:45 AM
8 Likes
‎03-15-2021 09:45 AM
8 Likes
...amed Doxyfile will be created): doxygen -g <configfile> CONFIGURATION SETTINGS Figure 2 provides an overall flow of how doxygen works. The main areas of interest are the config p...
0_Bellmer_1077_0305_144412.pdf (‏541 KB)
Labels:
  • Developers
  • Professional Development
  • Programming
  • « Previous
    • 1
    • 2
    • 3
  • Next »
Powered by Khoros