Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

FinancePMT Calculcation/Formula Needed

AMathis
6 - Meteoroid

I'm attempting to create an Alteryx formula to replicate a current formula we have set up in PowerBi and cannot seem to get the correct calculation.

 

I need to formula to calculate the monthly payment based on the criteria below (see screenshot):

 

 PMT = round(PMT(('Lease Query'[lse_int_rt]+'Lease Query'[prc_sbsdy])/100/12,'Lease Query'[lse_term],-'Lease Query'[tot_cap_cst],'Lease Query'[rsdl_amt]),2)

 

lse_int_rtprc_sbsdylse_termtot_cap_cstrsdl_amtmthly_rnt_amtPMT
2.3490.956038260.129435547.76547.73
2.3490.956038964.689435560.52560.48

 

 

 

2 REPLIES 2
CoG
14 - Magnetar

I managed to get the same output with the following formula (Just don't ask me why...).

 

Round(

-FinancePMT(([lse_int_rt]+[prc_sbsdy])/1200, [lse_term], [tot_cap_cst], [rsdl_amt],0)

,0.01)

AMathis
6 - Meteoroid

You are absolutely amazing!  That worked perfectly!!!!  Thank you so much

Labels
Top Solution Authors