Percentage through the month
I want to determine the percentage of the month completed; for example if today is the 14th, and there are 30 days in April the percentage is 0.46. To keep the formula simple I can assume all months have 31 days--so Today()/31. I am struggling with the formual type, is it date is it number?Solved43Views0likes3CommentsHelp with Calculating Average Completion Time Over Several Records
Hello, I have a table where each employee progresses through a stage with three date fields: Start Date & Scope/Role, Verify Eligibility & Funds, and Create Visa Plan. I also have a formula field that tracks the status of this stage (Not Started, In Progress, Complete) and calculates the number of days taken if the stage is complete. I need help calculating the average number of days it takes for employees to complete the stage. For example, if Employee 1 took 14 days, Employee 2 hasn't started yet, Employee 3 took 21 days, and Employee 4 is In Progress, I want to calculate the average completion time, which would be 17.5 days (it should only count those completed). Can anyone suggest the best way to achieve this? Thanks so much! Meag53Views0likes2CommentsDuration between record creations
I have a project log table that tracks each status change for a related project. How do I calculate the duration of time in each status? Essentially the difference (in days) between each record Start Date. I'm thinking this can be done in a report formula field39Views0likes1Commentsyntax help with formula
I am making a formula and I am having trouble with syntax I want the statement to say If([Sale]="Yes", than show [Manifest Price] but if ([sale]="cancelled" show 0.00) I need the syntax for "than show" "and but if" Edit I got some of that formula to work If([Sale]="yes",[Manifest price w/o iva],([Sale]="Cancel"),(0)) all it give me is the Cancel ones at 0 The manifest price one is blank Edit - Solved by AI Chatgpt If(Trim([Sale])="Yes",[Manifest price w/o iva],Trim([Sale])="Cancel",0,0)//Default value if[Sale]is neither "yes"nor "cancel"Solved51Views0likes6CommentsEmbed hyperlink in Formula Rich Text field
Hi, I have a rich text formula field with an IF function to display specific text when a criteria is met. I want to add a link to a file in between the text output that opens on a different window. I need the display text to show as a hyperlink. Example: If ([Platform] = "A", "Complete all tasks assigned for 'Priority Sites' once every 2 months", "No action necessary for this year") Where 'Priority Sites' is the display text for the SharePoint web link https://sharepoint/prioritysites.pdf From what I could find online, I guess I have to create a hyperlink field to store the web address but I'm not too sure how that works. Can someone provide a step by step guide on how to achieve the desired output?Solved30Views0likes4CommentsA form button that will force record add on a specific form.
I have a tasks table, but I want to allow users to enter simple tasks or complex tasks. One form for simple tasks and another for complex tasks. This works for complex tasks and is the default form for all roles. URLRoot() & "db/" & [_DBID_TASKS] & "?a=API_GenAddRecordForm&_fid_145=" & URLEncode ([Project Number])& "&z=" & Rurl() I am trying this one for simple tasks, but it still loads the complex tasks form (ID=11) even though the URL says form ID 16. URLRoot() & "db/" & [_DBID_TASKS] & "?a=API_GenAddRecordForm&_fid_16=" & URLEncode ([Project Number])& "&z=" & Rurl() Also, this latter one is not loading the related project like the first one does. There has to be a simple way to load form 16 even though it is not the default for all roles.23Views0likes2CommentsReport Formula - Combine some, exclude some, and include others.
I have a field [Types]. there can be A, B, C, D, E, or F. I need a summary report about these [Types] but the output needs to show, A, B, C+D, and exclude E and F. I'm using filters to exclude E and F. So I'm trying to use the Report Formula to create a new field [Performance] and using an If statement to say: if( [Type]="A","A", [Type]="B","B", [Type]="C","G", [Type]="D","G") The hope was that by renaming C and D to G, it would add those counts together when I add this Report Formula to the Column Group. but its only adding "C" not "D". Is this possible and I just have the wrong formula, or am I just going about this all the wrong way? Thanks, ASolved24Views0likes3CommentsDelete Formula Button Error
Hello, I have a URL Formula field I created that I'm trying to use as a Delete button on one of my tables, but I keep getting this "A formula cannot end with an assignment to a variable declaration." error message when I try saving it. The formula I am using is this: var text Delete = URLRoot() & "db/" & Dbid() & "?a=API_DeleteRecord&apptoken=*XXXXXXX*=" & [Record ID#]; Does anybody know what I should change? Please let me know.Solved25Views0likes2CommentsTime Zone change
Good morning, I am building a Transportation application for my team to use. When we request a pickup time from our transportation vendor, it is always in central time since we are based in Texas. Can QB convert the central time to local time based on my selected city? For example, I have an employee who needs to be picked up at LAX at 10 a.m. Pacific time, but we can only enter 12 p.m. Central time. How can I build a formula in QB that will convert noon central to 10 AM when I select LAX as a city? The same goes for all the cities we service. How can I make sure Daylight savings are accounted for? I have attached a spreadsheet of the cities we service regarding their summer and winter times.34Views0likes4CommentsQR Code to form
I am trying to Make a QR Code Using the quickchart.io formula I have made one that will take me to the inventory part. Is it possible to have it take me directly to making child record ( Inventory Usage ) form for that record??? its setup as Inventory > Inventory Usage i would like to have a binder with all the parts that can be scanned to "Check out" the part(s) and take the user directly to the form so they can deplete the inventory. Any help on this would be greatly appreciated.12Views0likes0Comments