RaeC Posted February 28, 2015 Posted February 28, 2015 I'm using the FM Starting Point database under FM 13 Advanced for Mac. Â As a freelancer, I track my monthly earnings very closely to ensure that I meet a target income goal for the month. I've been using a very lightweight app called 'Savings Jar' that lets me set a monthly target, enter earnings daily, and then displays how much I need to save per day to stay on track for this goal. Â It's working well, but is redundant and I can't do anything else with this data that I am tracking anyway in FM Starting Point. Â In FM Starting Point, I create a 'project' that is the current earning month. I then link all my invoices for the month to that project and I am able to get a running tally of my income for that month. I added an extra field in the project invoices tab to calculate where I am to my goal in relation to the income earned. Â What I'm missing is the the calculation based on today's date of how much I need to earn per day to stay on target. Â So if it's February 24th, I have four days left to earn the balance of my monthly goal, ie. monthly goal balance/4. The next day, I need that calculation to automatically update to monthly goal balance/3, then monthly goal balance/2, and so on. Is there a way to do this in Filemaker? I'm a basic user, but am able to muddle my way around so if this is doable, I'd need at least a hint of how to go about it. Â I'm attaching an image that will hopefully make my question clearer. Â Â Thank you, Â Rae
comment Posted February 28, 2015 Posted February 28, 2015 How exactly do you associate your "project" record with a month? If you have a field (of type Date) that holds the date of the first day of the month, then you can calculate the number of remaining days as= Let ( monthEnd = Date ( Month ( MonthStart ) + 1 ; 0 ; Year ( MonthStart ) ) ; Case ( Get ( CurrentDate ) < monthEnd ; monthEnd - Get ( CurrentDate ) ) ) and divide the balance by this number. Note that the calculation must be unstored.
RaeC Posted February 28, 2015 Author Posted February 28, 2015 I just call the project a month and do all my transactions for that month as being tied to that project. The only date fields are that I can input a start and end date to the project: Â Â I think I understand what you're saying with the calculation you provide. I will play around with it. Thank you! Â Rae
RaeC Posted February 28, 2015 Author Posted February 28, 2015 Looks like this is going to work exactly as I needed it to. Thank you so, so much! Rae
Lee Smith Posted February 28, 2015 Posted February 28, 2015 <strong class='bbc'>Automatic message</strong><br /><br />This topic has been moved from "FileMaker 13 General Discussion" to "FM Starting Point - General Discussions".
comment Posted March 1, 2015 Posted March 1, 2015 The only date fields are that I can input a start and end date to the project: You could have those calculated automatically from an auto-entered serial number. If, for example, your first record is for January 2014, you could make : cMonthStart = Date ( MonthID ; 1 ; 2014 ) and: cMonthEnd = Date ( MonthID + 1 ; 0 ; 2014 ) This is of course assuming that starting from the first month, you will have a record for each consecutive month.
RaeC Posted March 1, 2015 Author Posted March 1, 2015 This is of course assuming that starting from the first month, you will have a record for each consecutive month. Which isn't the case, unfortunately. I have some projects that aren't tied to the months. But the calculation you gave me was more than enough to start on. I need to tweak it a bit to get it working perfectly, but considering my utter lack of FM skills, I am thrilled with how far it has gotten me! Thanks again! Rae
Richard Carlton Posted March 1, 2015 Posted March 1, 2015 Yes... FileMaker is a fun tool...and this is a great community. - RC
RaeC Posted March 5, 2015 Author Posted March 5, 2015 I only got into FM because I was frustrated by the lack of invoicing software for the Mac market and FMSP seemed to have the most robust and customizeable solution. I was right. I'm only now, after over a year of playing with FMSP, starting to make fuller use of all its features. Rae
Recommended Posts
This topic is 3810 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now