I have broken the "publish" function somehow. If I make any changes and publish, the changes are not applied.
I tried to give it a new URL and folder to save to in publish and I get the following message: Parse error: syntax error, unexpected '__userdefinedusername' (T_STRING) in D:\xampp\htdocs\NMSPortal2\config.php on line 100
I have made a web app using PHPRad, and need to report on the % a field value compared to the sum of all the field values..
e.g.
Table:
ID
Process
Value
1
ArcSpray
10
2
Machine
5
3
ArcSpray
12
4
ArcSpray
20
5
Machine
24
6
ArcSpray
34
7
ArcSpray
100
I want to find the percent (%) that ArcSpray is compared to the total in relation to the values. the simple math is, SUM (Values WHERE Process = ArcSpray) / SUM (Values) * 100 = %
I have done this in excel and access (via multiple queries)
RESULT:
Process
Percent of Total
ArcSpray
86.27
Can someone please help how I may be able to get this done?