Community
        
        
            
                
                    Sales Tax in USA: can we set for only the state we reside in or is it a flat sale tax? Payable Apps hid that little but oh so vital fact. I found out AFTER I set everything up. So I'm asking BEFORE I waste another hour and getting my hopes up high. THANK YOU! 
                    
                 
                
             
         
     
    
        
        
     
Comments (7)
Jul 8, 2024
Hi Jenny, There are three options to calculate taxes. (1) setup taxes for each product and then use the standard TAX() formula to calculate the taxes (2) calculate the tax as a fixed percentage of order amount (3) add a custom formula to calculate taxes. If you would like to calculate the taxes only for the state you reside in, then you can add a dropdown field for states in the form. You can calculate the tax based on this field. For example, IFS(State == "NY, 0.08875 * Order Amount, 0) If you can provide specific details about the state, tax percentage and the link for your form, we can share the relevant instructions so that can add the calculations in your form and test it.
Jul 8, 2024
Thank you! this is really good to know. I would use the IFS(State = = "CA, 0.1025 * Order Amount, 0). Only one opening ( in front of state, no closing parenthesis? And the order amount set at 0 will update depending upon total cost, but NOT shipping? I'll use for about 200 products. I won't set up for each. And it's quite illegal to charge a fixed amount when I ship all over the USA. So a custom formula is exactly what I need. IF I decide to use this -- which has more to do with whether or not I can set up my own store -- I'll be back. Thank you for FAST reply. I appreciate you!!
Jul 8, 2024
Hi, looking at your forms. Please tell me IF your product will work for a Photo store. And IF they are included in the “10 Forms” in Basic plan. I need an Order Form showing a thumbnail of images so people can pay me. 1 - Can I change proportion of images to 16:9? Landscape, horizontal. The proportions we see on vids, YouTube, Vimeo, etc. I’m a photographer. My most famous images are Landscape or Horizontal. Never ever square or tall. 2 - Approx 200 photos, 2 main categories. One category will have about 40 photos. Other category about 150 photos. 3 - Photos must display Alphabetically by default. 4 - Photos must display Filename listed under the photo. Must be visible at all times, without needing product image clicked or hovered over. 5 - Is that possible? If so, is that one of the 10 forms or an additional cost? Any tips great appreciated!
Jul 8, 2024
Wonder why these questions are appearing out of order? I forgot to ask MOST vital question: I have 6 variable options per photo. Will the order form indicate those options? (3 photo sizes, signed or unsigned, 6 choices for each photo. Really vital!) Thanks!
Jul 8, 2024
SORRY! Just found answer to variants! Easy peasy. I sure hope Image Proportions can be modified. Only way I can use your fine product. Thanks!
Jul 8, 2024
Add a dropdown field for state In the Neartail Edit page, click on the + Add question icon > enter the title "State", select the dropdown question type > enter the states you deliver to as answer choices > mark the question as required. IFS function: Evaluates multiple conditions and returns a value that corresponds to the first true condition. Syntax: IFS(condition1, value1, condition2, value2, …) where condition1 - The first condition to be evaluated. value1 - The returned value if condition1 is TRUE. condition2, value2, … - Additional conditions and values if the first one is evaluated to be false. If you would like to charge 10.25% of the order amount as the sales tax for "CA" (answer choice for the State question), then you can use the below IFS formula. Calculate tax In the Neartail Edit page, click on the Add price field icon > select Tax, click Next > select custom formula, click Next > enter the IFS formula and click Create. For only one state IFS(State == "CA", 0.1025 * Order Amount, 0) For two states IFS(State == "CA", 0.1025 * Order Amount, State == "NY", 0.08875 * Order Amount, 0) You can add the calculations for as many states as required. Calculate total amount In the Neartail Edit page, click on the Add price field icon > select Net amount, click Next > select Standard calculation using NETTOTAL() formula, click Next > click Create.
Jul 8, 2024
Products [1] Only square images are supported for products. You must upload images with 1:1 aspect ratio or crop the images to fit the size requirements when you upload product images. [2] The products will be displayed in the order you arrange them in the form. [3] Product name, price, image will always be visible in the form. If you add a long product description, users will have to click on the product to read the full description. [4] You can add products with variants.
Add your comment
Add photo