Need to create high & low payment based on 20% down for both 36 and 42 month lease terms.

I have 3 different tables on my worksheet and need to formulate low and high payment scenarios for both 36 and 42 month lease terms based on 20% down. Help.

trods wrote:
Anyone?
Patience, trods. Remember that this is a user-to-user forum, and the participants arrive when they choose to or are able to, not according to a work schedule set by an employer.
On your question:
So far you have supplied two factors, and implied a third, that would affect the size of the payments to be made:
Total amount, downpayment as a percentage of the total amount, and the term on the agreement in months.
From that you want to calculate a "low payment scenario" and a "high payment scenario" for a term of 36 months, and the same two scenarios for a term of 42 months.
Missing from the data is whatever factor determines how a "low payment scenario" differs from a "high payment scenario." What's missing?
Regards,
Barry

Similar Messages

  • I have partitioned my time capsule, but I can't get it to work as a Time Machine back up and permanent media server for both mac and PC. What format do I need to partition the drive to so that it works for both mac and windows and so that it will be visab

    I have partitioned my time capsule, as I want part of it to act as a media server for both mac and windows. However I don't know what format that I need to partition it to. I also can't make it a permanently accesible drive. I want to restore the drive to the original format (which I don't know) and start again and re-partition the drive in a format that can be used for media by both mac and PC and for time machine back-ups and make the media part of it permanetly accesible so I can add and acccess my files.
    Thanks

    You are mixing up a couple of things here.
    The TC drive cannot be partitioned without removing it.. did you do that?
    If you partition it you must use a Mac disk utility and use the HFS+ ie standard Mac format. And GUID partition table not windows type.
    You can select erase disk in the airport utility.. that will take the disk back to original format. No partitions. TC is deliberately not partitioned as it is not a media server.. it is a backup device for TM. Over time .. the disk will be filled with TM backups so you have a long history of file changes to your computer.
    There is no media server in the TC.. it is merely disk storage.. you can serve files from it to a media device.. but the TC itself is dumb as dumb.
    Now the actual format of the drive is irrelevant to the PC.. The TC offers SMB file services to the network. You can copy files to and from the TC as if it was a local disk without caring one iota about the format. The TC handles that .. it is not a local disk .. it is a network drive.
    Although you cannot partition the TC. you can still copy files to it.. this does have implications for TM.. but as long as there is plenty of free space should not be a major issue.
    You can create a disk image via the disk utility in a Mac.. and as stated you can create partitions if you do it on a Mac with the disk directly connected which means breaking warranty if any exists on the TC.

  • Set desktop wallpaper based on screen resolution for both WinXP and Win7

    I'm hoping someone can answer this for me. I would like to be able to set the desktop wallpaper based on the current screen resolution when a user logs in. I've made several .BMP files for varying resolutions with our corporation logo. But, say
    if a wallpaper for a resolution of 1024x768 on a 4:3 monitor is set, then that monitor is replaced with a 16:10 monitor with a resolution of 1280x800 or 1600x900, the wallpaper looks stretched out and ugly. The only way to change it is manually on
    each computer, but most end users (students) would not have permissions to do so.
    I thought this question would have been asked before, but after many, many searches, I've only come across one reference that copies the background from a network share to a location on the local computer, which I found
    here. In my case, the file will already be on the local computer, but I am not sure how to force the system to change the wallpaper based on the current screen resolution. I'm sure it is possible and maybe I am overlooking something very simple. I
    was also thinking that this would either happen only once on first login or maybe based on user authentication (which group the user belongs to) so that teachers are still able to change their wallpaper, but students would not be able to.
    If it helps, I will be deploying the image using MDT 2010 Update 1. The same base image will be used on multiple machine types (HP desktop sand laptops and Lenovo desktops) which could have one of 6-7 different monitor types connected. I'd also like
    this to happen on the local machine instead of GPO or logon script as there is already a lot happening there.
    I would need to be able to do this for both Windows XP Pro and Windows 7 Ent x64. The XP machines will mostly have 4:3 monitors, but there are exceptions.
    Maybe what I am asking isn't entirely possible or possible at all. I, unfortunately, am in the extremely early stages of learning Microsoft Scripting (VBScript and PowerShell) to use with MDT 2010, so I know next to nothing when it comes to these scripting
    processes, but am willing to try and learn.
    Any help anyone can suggest, I would be extremely grateful.

    I almost abandoned this because I thought it was going to interfere with using BGInfo. But, as it turns out, I was able to incorporate the running of BGInfo into a script that I
    created. And, once I saw what 16:10 Aspect Ratio background looked like on a 16:9 Aspect Ratio screen, I was not satisfied.
    I happened to use the first script that MkShffr posted from geekshangout.com, but then I added more items to it. I also created three high-res wallpaper backgrounds as suggested
    by pagerwho.
    My script is based on the Aspect Ratio of the current resolution. Since most, if not all, systems will get the resolution set during deployment, this was easy to calculate.
    And by forcing the output of the Aspect Ratio to two decimal places, I just used a Case statement to select which aspect ratio to choose from and apply the wallpaper assigned to it. I thought about using If Then statements, but I think the Case statement
    is much cleaner.
    And, because BGInfo wants to change the Picture Position to "Tile" instead of "Fit" that I manually set it to in my image, I added two reg key change lines per Case. BGInfo still
    changes the Picture Position to "Tile", but for whatever reason, this works. I tested this by using a laptop with a 16:9 Aspect Ratio screen. In my image, I manually set a 16:10 wallpaper because that will be the primary Aspect Ratio used in our corporation,
    however we are getting more 16:9 Aspect Ratio laptops and from what HP is saying, everything will be standardizing on this Aspect Ratio.
    I made sure the Screen profile that I saved in my image was loaded which includes the 16:10 wallpaper. I then placed this script in the “C:\ProgramData\Wallpaper_Change”
    directory that I created in the image. I then added a registry value in HKLM\System\Microsoft\Windows\CurrentVersion\Run and created a String Value. I did this so that it would run at log in, but I didn't want it to show in the Startup Folder in the All Programs
    Menu. It takes less than a second to run, but it seems to work well. I tested it several time to see if there were any anomalies, but it seemed to work great each time. I have yet to test it with a computer that is on the domain with a regular user account,
    which I will be doing in the next day or two.
    In the mean time, if someone want to try it out and see if it works from thier use, here is the code. I did comment out the wscript.echos, but left them in to use for troubleshooting
    in the future.
    -Mike
    ==============================
    Option Explicit
    Dim array_ScreenRes, screenRes_X, screenRes_Y, oIE, width, height, aspect_ratio
    Dim decpos, wallpaper1, wallpaper2, wallpaper3, oShell
    array_ScreenRes = GetScreenResolution
    screenRes_X = array_ScreenRes(0)
    screenRes_Y = array_ScreenRes(1)
    wallpaper1="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1440 (16-9)TSC.bmp"
    wallpaper2="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1600 (16-10)TSC.bmp"
    wallpaper3="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1920 (4-3)TSC.bmp"
    Set oShell = CreateObject("Wscript.Shell")
    'wscript.echo "Resolution is " & screenRes_X & "x" & screenRes_Y
    aspect_ratio = screenRes_X/screenRes_Y
    decpos=instr(aspect_ratio,".")+2
    aspect_ratio=left(aspect_ratio,decpos)
    'wscript.echo "Aspect Ratio is " & aspect_ratio
    Select Case aspect_ratio
    Case "1.77"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper1
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper1
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    Case "1.6"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper2
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper2
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    Case "1.33"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper3
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper3
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    End Select
    oShell.Run "%windir%\System32\RUNDLL32.exe user32.dll,UpdatePerUserSystemParameters", 1, True
    oShell.Run "C:\ProgramData\BGInfo\BGInfo.exe C:\ProgramData\BGInfo\TSC.bgi /timer:0"
    Function GetScreenResolution()
     Set oIE = CreateObject("InternetExplorer.Application")
     With oIE
        .Navigate("about:blank")
        Do Until .readyState = 4: wscript.sleep 100: Loop
        width = .document.ParentWindow.screen.width
        height = .document.ParentWindow.screen.height
     End With
     oIE.Quit
     GetScreenResolution = array(width,height)
    End Function

  • If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?

    I work for a organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad and want to continue this through 2015. 
    At the moment we can only create apps for the iPad platform.  If we upgrade to a Professional Edition DPS license can we create an unlimited number of Single edition apps for iPad, iPhone and Android devices?
    We do not need multi-folio apps as we are not a publishing company.  

    Thanks Neil
    I sent an email yesterday and am awaiting a reply.  Here is my email for reference.
    Matt
    I work for a large organisation based in Sydney and we have a team license for creative cloud (single edition).
    We have been producing single folio apps for the iPad through Indesign and the App builder.  We now want to produce apps for iPhone, iPad and Android devices.  
    If we upgrade to a Professional Edition DPS license can we create an unlimited number of apps for iPad, iPhone and Android devices?
    We are not a publishing company so we will produce a small number of the apps.  If you could get back to me with a solution and approx price that would be great.
    Thanks for your time
    Regards,
    Matt

  • Creating InDesign files for both print and mobile output?

    I am looking for a way to create files that can be multi-purpose for both print and mobile/online environments. I would like the output to be 2 different PDFs from one set of Indesign files. The problem I am encountering is that currently my files are full of hi-res and vector graphics, effects, and are generally created to be optimized for large-scale printings on offset or digital presses. I am trying to use the same files to generate files that are optimized for mobile and online presentation but finding that the number of vector graphics specifically is slowing page display down.
    My initial reaction is that the solution would have to be dual-development. Multiple forms of 'master graphics' would have to be created and placed on multiple layers (one for print and one for mobile/online).
    Hi-res files could be made lo-res in Acrobat or Pitstop, but vector imagery would have to be rasterized and I am not aware of a method to do that in either of those programs.
    I have found some info on adobe.com leading me to think that maybe CS6 addresses some of this, but the majority of my work is being done in CS4 with only the bleeding edge being done in CS5.
    Thanks in advance for any insight.

    the output to be 2 different PDFs from one set of Indesign files.
    You can accomplish this by saving each PDF using a different preset - High Quality Print for the high res, smallest file size for web
    but vector imagery would have to be rasterized...
    You should be trying to keep all vector work as vectors. This, in most cases, lowers the file size. There are a couple of exceptions to that like if the vectors are very complex (layered etc) and you are using bitmap effects like drop shadows. In general, rasterizing will increase the file size and lower the quality.
    Is there any functional difference between the 2 PDFs? I am wondering why exporting using 2 different presets will not do the job efficiently enough. You could always save your linked images with a low res version - same file but make a copy 100dpi instead of 300dpi. This might help but InD normally downsamples the images anyway when exporting as smallest file size.
    EDIT:// In Acrobat, you can save as "Reduced Size PDF" which strips out all the meta data etc and makes the PDF lighter and faster for web use. This would be a final, before publishing online step.

  • I need a Badi that is triggered when saving Sales order in both Va01 and Va

    Hi
    I need a Badi that is triggered when saving Sales order in both Va01 and Va02
    I tried with the following BADI's
    BADI : BADI_SD_SALES
    Implementation : /BEV1/SR_SALES_ORD_1
    Method SAVE_DOCUMENT
    Now when i want to put my peice of code in this (SAVE_DOCUMENT) method.
    It is asking for Access key. Which i do not have.
    Should i create a implementation and then create a method and then put my code there?
    Anybody plz help.

    You will probably not find a BADI to suit your needs.  However if you look at include program MV45AFZZ you should find two subroutines:  USEREXIT_SAVE_DOCUMENT_PREPARE and USEREXIT_SAVE_DOCUMENT.  You can put the code you need directly into these subroutines.  If these have not been changed yet on your system, you will need an access key to make these changes.
    Please read the documentation in the header of the subroutines for furtner information on when they are called.
    Best Regards,
    Chris H.

  • Please help me..?! My iphone 4 is low battery so i'm charging for 8 hours and i turn on it..But the iphone 4 can't turn on..!! Please help me..!!

    Please help me..?! My iphone 4 is low battery so i'm charging for 8 hours and i turn on it..But the iphone 4 can't turn on..!! Please help me..!!

    Try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Hi there.  I have a MBP w/ 10.8.5 and an iPad 2 w/ 6.1.3; can I communicate from one device to the other via FaceTime without having to create another apple id?  Thanks in advance for your time and consideration!

    Hi there.  I have a MBP w/ 10.8.5 and an iPad 2 w/ 6.1.3; can I communicate from one device to the other via FaceTime without having to create another apple id?  Thanks in advance for your time and consideration!

    Hi there.  I have a MBP w/ 10.8.5 and an iPad 2 w/ 6.1.3; can I communicate from one device to the other via FaceTime without having to create another apple id?  Thanks in advance for your time and consideration!

  • Have downloaded a .epub file from a third party publisher to my pc. Publisher advises that  iTunes is needed to move the file to my iPad. iTunes installed on  both pc and iPad. What's next?

    Have downloaded a .epub file from a third party publisher to my pc. Publisher advises that  iTunes is needed to move the file to my iPad. iTunes installed on  both pc and iPad. What's next?

    Drag or copy the file into the Automatically Add to iTunes folder in your library (default location C:\Users\user_name\Music\iTunes\iTunes Media), or add it manually using File > Add File to Library ...  If the file is compatible with iTunes it'll be added to your library and can then be synced with your iPad.

  • Need to Create a Dynamic Calendar Based on School Year Sharepoint O365

    I have a request from a school program department. They are in need of a calendar based on total number of days in a school year (180) excluding weekends/holidays. The calendar will need to provide the following information: 1. Upon a student entering
    a program, the calendar will need to calculate days of school before entering program, school days in program, and school days after completion of program. I am trying to figure out if this is possible and if so, which program I should use. Access, Excel??
    Any suggestions or input would be appreciated.

    I feel that your question lacks a lot of background info which would have a HUGE impact on the design of the solution... specifically...
    you need a calendar... a calendar is generally a way of visually formatting data into days/weeks/months... and such a calendar can exclude weekends (just don't show saturday/sunday), but there's no good PRACTICAL way to exclude specific days within a month-view.
    (I guess if you were using a ghantt chart type of view, you could skip holidays/etc.
    But then you mention needing to CALCULATE days... which is different from seeing data visually represented as a calendar...
    You mention how the calculation will be used relative to OTHER data, but you don't really mention how that other data is being used.
    You also don't really mention what happens in the event of CHANGE... does anything need to happen to the OTHER data, if for example, a school has so many snow days that the school year is extended?
    So...
    I see a whole host of options...
    If the OTHER data is in an InfoPath form, you could create a web service to calculate the days.
    If the OTHER data is in an Excel form, you could have a hidden spreadsheet
    If the OTHER data is in an Access form, you could have a function operate against some external table lookup
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Need help creating a device collection based on members of a user collection

    Hello everyone,
        I am working on developing a device collection based on the membership of a user collection. The purpose of the device collection is to provide us with the capability of deploying software to users while the users are logged off their systems.
    I would love to use AD security groups but unfortunately that isn't an available approach in this case. I have been experimenting with SQL queries to find the best way to obtain the results I want and the following query works like a champ:
    Select SYS.Name0,
    v_R_User.Unique_User_Name0
    FROM v_R_System AS SYS
    JOIN v_UserMachineRelationship ON SYS.Name0=v_UserMachineRelationship.MachineResourceName
    JOIN v_R_User ON v_UserMachineRelationship.UniqueUserName=v_R_User.Unique_User_Name0
    JOIN v_FullCollectionMembership AS FCM on FCM.ResourceID = v_R_User.ResourceID
    JOIN v_Collection AS COLMEM ON COLMEM.CollectionID = FCM.CollectionID
    Where FCM.CollectionID = 'cha0000B'
    The problem arises when I attempt this same query in SCCM 2012, I don't get any results from this query so of course it won't work to base a Device Collection from. Here is the WQL:
    Select SYS.Name,
    SMS_R_User.UniqueUserName
    FROM SMS_R_System AS SYS
    JOIN SMS_UserMachineRelationship ON SYS.Name=SMS_UserMachineRelationship.MachineResourceName
    JOIN SMS_R_User ON SMS_UserMachineRelationship.UniqueUserName=SMS_R_User.UniqueUserName
    join sms_v_FullCollectionMembership AS FCM on FCM.ResourceID = SMS_R_User.ResourceID
    join SMS_v_Collection AS COLMEM ON COLMEM.CollectionID = FCM.CollectionIDwhere FCM.CollectionID = 'cha0000B'
    I am hoping that someone will be able to look at my SQL and tell me how I can get the WQL right so I can use this query properly or provide suggestions to accomplish what I need.
    Thanks in advance for the assist,
    Chris Bolton

    Hi Torsten,
         While your suggestion of that link was close, it still went in the direction of using security groups as the basis for device queries and that isn't the direction I am pursuing. I had a colleague look at my original query and he identified
    that I had some unnecessary redundancy but that didn't resolve my SQL -> WQL inconsistency. I continued to play with the query and the following SQL also works (and actually works a bit better for my purposes)
    select distinct v_R_System.Name0,
    v_R_User.Unique_User_Name0
    FROM v_R_System
    JOIN v_R_User on v_R_User.Full_User_Name0 = v_R_System.User_Name0
    JOIN v_UserMachineRelationship ON v_R_System.Name0 = v_UserMachineRelationship.MachineResourceName
    JOIN v_FullCollectionMembership on v_R_User.Unique_User_Name0 = v_FullCollectionMembership.SMSID
    WHERE v_FullCollectionMembership.CollectionID = 'cha0000b'
    however when I translate it to WQL I still am unable to get results (here is the WQL version)
    select distinct sms_R_system.Name,
    sms_R_User.UniqueUserName
    FROM sms_R_system
    JOIN SMS_R_User on SMS_R_User.FullUserName = SMS_R_System.UserName
    JOIN SMS_UserMachineRelationship ON SMS_R_System.Name = SMS_UserMachineRelationship.MachineResourceName
    JOIN SMS_FullCollectionMembership on SMS_R_User.UniqueUserName = SMS_FullCollectionMembership.SMSID
    WHERE SMS_FullCollectionMembership.CollectionID = 'cha0000b'
    I think I am on the verge of getting this right but it sure seems to be a challenge. Is there a "WQL Workbench" that I could use that is similar to SQL Management Studio inside of which I could test these queries rather than having to use the rather clunky
    SCCM "Edit Query Statement" dialog box?
    Thanks again,
    Chris Bolton

  • Need help for creating sharepoint sites for both internet and intranet users

    We would like to know what is the best approach to create SharePoint sites for our customers(internet users) and internal employees(intranet users) on the same SharePoint server. Here is the scenario:
    1) A customer posts a document from internet.
    2) This triggers a approval workflow that can only be accessed and executed in the intranet environment. This approval process requires approval's possible modifications to the customer's document.
    3) We would like the customer not to able to check the approval state and the modified document until the document is fully approved and finalized.
    We are pondering if we need to create two sites, one site for customer and the other site is for internal approvers. Or one site is possible. It also looks like we need to somehow copy customer's original document to intranet site and triggers the workflow.
    Any design ideas are helpful. Thank you advance!

    Hi Jason,
    Though it is perfectly possible to have both intranet and internet on the server, it is not a recommended practice. Having both on the same server would have multiple problems, instead me detailing it out, here is a forum thread on which Trevor had given
    enough reasons -
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9b550c33-6f5f-4cd9-8762-8ff389b747d9/sharepoint-2013-one-farm-to-host-intranet-extranet-internet?forum=sharepointadmin
    If you have valid reason to go with single server, then you can also explore email enabled lists as one option and another one would be using custom sharepoint designer workflow.
    you can also try using event receivers to send documents to intranet site from internet site, process everything and update the document in the internet site.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • I need to create a rescue e mail so I can reset security questions and answers I never answered any questions before so any answer I put in r incorrect please help I tunes support has been useless

    I need to create a rescue e mail to change security questions and answers I never answered any questions when I first started using I tunes so there is no correct answer for the questions I also never set up a rescue e mail I tunes support after five requests has been useless

    Anything here to hlp? https://discussions.apple.com/message/19489801?ac_cid=tw123456#19489801

  • Generating a report based on two analytics(for ex:PO and PR)

    I have a question regarding generating reports on two analytics.
    In our scenarios,
    We need to generate a report based on Purchase order and Purchase request.Is it possible in OBIA?
    if yes,please provide the solution.
    Thanks in advance

    Hi ,
    Thanks for your valuable time.
    We are in designing phase of the project. we need to know ,Is there any inbuilt dashboards or reports built using both PO and PR repositories?
    I would like to explain with ex:
    Let's say we need a report or dashboard containing few fields from PO and few fields from PR.Let's assume both PO and PR data available at same granularity.
    Do we have any such inbuilt reports or dashboard?
    If not,could we customize the report generation using both PO and PS tables?
    Please provide the solution.
    Thanks in advance.
    Edited by: user3561029 on Aug 31, 2008 9:03 PM

  • Need to disable Private Window/Private Browsing on our work computers, both mac and pc?

    I support both macs and pcs with version 26 of firefox on all machines. I need to disable private window and private browsing, including the keyboard shortcuts.

    Thank you for the info.
    I did run across in my searching another way to disable by creating a txt file (userChrome.ccs) with this code, minus the first sentence: (Open the file on any text editor. Copy and paste the following lines after @namespace
    /* Hide Private Browsing in App menu and Tools menu */
    #appmenu_privateBrowsing, #privateBrowsingItem {display:none!important;}
    /* Hide Sanitize item in App menu and Tools menu */
    #appmenu_sanitizeHistory, #sanitizeSeparator, #sanitizeItem {display:none!important;}
    I need to try it on my mac before I implement it on other macs and the pcs. The directory placement area was a little vag so I tried it here.
    I placed the file in: HD/Users/{me}/Library/Application Support/Firefox/chrome
    restarted firefox. Did not work.
    Does any one know if the above into is correct and if I placed it in the correct area on the mac?
    This is the info I got to place the same file on the pc:
    C:\\Users\\[User]\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\[random string].default\\chrome\\
    Does anyone know if this is correct? I can not test this until after hours on the pc.
    Thank you again! I really tried to do the research before I posted the question.

Maybe you are looking for