lowercas3
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Calculators not workingThank you – that worked
Forum: Plugins
In reply to: [Calculated Fields Form] Did something change with the latest version?Here it is:
https://3roam.com/running-average-calculator/
The instructions no longer appear in blue lettering under the input box and the box itself looks different than it did before.
Thanks in advance
- This reply was modified 2 years, 3 months ago by lowercas3.
Forum: Plugins
In reply to: [Calculated Fields Form] Binary to Decimal valueThank you for your response. This works except when there’s a zero as the first digit. 101 works for instance but 0101 does not.
Any thoughts on how to resolve this?
Best wishes
Forum: Plugins
In reply to: [Calculated Fields Form] Radio buttons to pick a different equationThank you!
Forum: Plugins
In reply to: [Calculated Fields Form] Radio buttons to pick a different equationOkay perhaps I am misunderstanding something. I want it to evaluate the equations with user entered values in the boxes Value1 (same as fieldname43) and Value2 (same as fieldname26). The radio button only selects which of the two equations to use: either fieldname26*10*LOG(fieldname43)/LOG(10) or fieldname43*fieldname26.
Is there an alternative approach?
Forum: Plugins
In reply to: [Calculated Fields Form] Radio buttons to pick a different equationThanks – here it is: https://www.orbit6.com/test/
Forum: Plugins
In reply to: [Calculated Fields Form] Radio buttons to pick a different equationThanks for responding. For some reason it only gives me the result of fieldname1. Ignores fieldname2
- This reply was modified 2 years, 5 months ago by lowercas3.
Forum: Plugins
In reply to: [Calculated Fields Form] Radio buttons to pick a different equationThanks for responding, that’s not what I meant.
I have two radio buttons in fieldname4. If the first radio button is selected, then I want fieldname1+fieldname2. If the second radio button is selected I want fieldname1*fieldname2.
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Amazon Custom ads not showingSorry about that. I have enabled remote debugging and disabled the cache.
Forum: Plugins
In reply to: [Calculated Fields Form] BinaryThank you very much. What about the reverse calculation – i.e. from binary to a number?
Forum: Plugins
In reply to: [Calculated Fields Form] Sum of a series of numbersHello, thank you this works. The only issue is when I reduce the series to one number. It doesn’t provide a result. Any idea how we can accommodate this case?
Forum: Plugins
In reply to: [Calculated Fields Form] Sum of a series of numbersHello,
I tried this code and it doesn’t appear to recognize negative numbers in the input list as being different from positive numbers. So 10, -10, 10 will give the same result as 10, 10, 10. Any idea what I might be doing wrong? thanks.
(function(){ var list = fieldname15|r.replace(/[^\.\d\,]/g,'').split(','), count = list.length; return SUM(list, function(x){return x;})/count; })()- This reply was modified 3 years, 6 months ago by lowercas3.
Forum: Plugins
In reply to: [Calculated Fields Form] Sum of a series of numbersThank you. This works well. Let’s say I want to take the average of the square of each of the values. How would that work?
(fieldname123|r.replace(/[^\.\d\,]/g,”).split(‘,’)) is the array of numbers – so I’d like to apply a square operation on each element of the array and then take the average.
Forum: Plugins
In reply to: [Calculated Fields Form] Sum of a series of numbersSorry I should have clarified. How do I create a field to accept the user input as a sequence of numbers separated by commas?