ContributionsMost RecentMost LikesSolutionsRe: Removing Holidays and Weekends between two dates and calculating daysEntire Year Basically i will have a table called "Off" in that table i will have date field "Hoilday Date" , so i will create 14 or 15 records each year . So those records will be my Holidays for the year. I have another table "Records" , in that table i have two fields "Start" and "End" date fields , so i will select a date in both two fields , for example 15/09/2017 - 20/09/2017 so basically 16 and 17 are weekends and consider 18-09-2017 [Which i added as a record in "Off" table] is a holiday , then i get the number of days as 3 [15 -09-17, 19-09-17 , 20-09-17] . Is there any native quickbase option. Many Thanks in advanceRemoving Holidays and Weekends between two dates and calculating daysEach year i will have number of hoildays , so i need to add in a table as records so from there i need to fetch the holiday dates and calculate in another table where the two date fields are there. Is there any native quickbase option.Re: webhook error: Invalid User TokenIs the user token is assigned to the particular application , also please check the message body please see the below link . https://help.quickbase.com/user-assistance/configure_a_webhook.html Re: Don't save the record if the function returns false otherwise save the recordI got the solution. i hope this will help anyone DoSave = (function(fn){ return function(){ var resultofalertMSGS = alertMSGS(); if (resultofalertMSGS === false) { return false; }else{ var result=fn.apply(fn, arguments); return result; } } })(DoSave); Don't save the record if the function returns false otherwise save the record I have a child function alertMSGS so the alertMSGS function checks the values in four variables and gives a alert message that they are not equal, so it will return false to the parent function which is DoSave() its a closure function , from my knowledge . So if the return is false i need to exit the save otherwise need to perform the save. !! See below . Many Thanks in advance function alertMSGS(){ <br> var currentWeekEarning = parseFloat( $("#_fid_19").val() ); var totalYearEarning= parseFloat( $("label[for=_fid_39]").next("div").text().replace('$', '').replace(',', '') ); var currentLoss = parseFloat($("#_fid_20").val()); var totalYearLoss= parseFloat($("label[for=_fid_38]").next("div").text().replace('$', '').replace(',', '') ) if( (currentWeekEarning != totalYearEarning) ){ alert("currentWeekEarning Not Equal to totalYearEarning"); return false; } if ( currentLoss != totalYearLoss) { alert(' currentLoss Not Equal to totalYearLoss'); return false; } } DoSave = (function(fn){ return function(){ var resultofalertMSGS = alertMSGS(); if (resultofalertMSGS === false) { // so if the function returns false then i need to exit from the (DoSave Function) and if it satisfies then i need to perform the (DoSave Function) } var result=fn.apply(fn, arguments); return result; }; })(DoSave); I got the DoSave() function code from quickbase itself , so i hope i will get a reply on this. Re: Listing all the User's for a corresponding roleNo Samuel, that's not the thing i was trying. Anyways thanks for the help !!! :)Re: Adding 3 html formula-involved texts fields (number of days)So can you elaborate more , I understand like There are three formula text fields which gives the number of days as output like [Formula 1] = 12 [Formula 2] = 10 [Formula 3] = 14 On 4th field which is [Formula 4] , you need to add the 12+10+14 and show the sum as 36 in the last field . Is this is what you are asking !!!Re: Listing all the User's for a corresponding roleSo there is no native solution !!! , i was just trying to show all the users for each role in different fields. Re: Listing all the User's for a corresponding roleNo , I need a field "users of Admin Role" that should be a type of "list user" and it should hold all the users of the role Administrator !! Do you have any Idea?Listing all the User's for a corresponding roleI have a Administrator Role , i need to show all the Users corresponding to that role, Is there any way to achieve this !!