Holiday Notice – Support Unavailable on April 18 and April 21
We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!
In the meantime, if you need any help, feel free to:
-
Use the support widget in the bottom right corner on our websites (Amelia and wpDataTables) — our latest AI-powered assistant is there 24/7 to help with basic and intermediate questions,
-
Browse our detailed documentation (Amelia, wpDataTables)
-
Explore helpful articles,
-
Or check out our YouTube channels for video guides!
Amelia YouTube Channel
wpDataTables YouTube Channel
Thank you for your understanding, and we wish you a wonderful holiday weekend!
Hi,
I'd like to create a series of summary charts that are take criteria from dropdowns or other table tools. How can I accomplish this? My thought was to create a table and allow filtering however i only want my charts to show summary data (ie in sql sum(xyx)) of the data based on what is selected.
Hello Andrew
Filtering charts would only work if you add both the chart and the table on the same page. You would be able to add a formula column which would calculate the sum of other columns (column1+column2+column3) and then plot that column on the chart.
I'm not sure if that's what you want to achieve, though.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Ah I want to do the opposite, I want to have a sum of all data in a given column (meeting the filtered criteria), not the sum of col 1, col2, etc.
In sql I might use a subquery to do this.
select sum(col1) as thesum from (
select col1 from tablename where criteriaCol = <column i can filter in table>
)
I don't see a way you could do this, Andrew.
The charts look for data within cells, and each row is plotted on a chart as a separate data string. So, adding calculation functions to the chart is not possible.
You could, however, create a MySQL query-based table, where you would perform these calculations through the query, so the sum is in one row, in multiple columns. That way, you'd calculate the data from table1, in table2 and use table2 for displaying that data in a chart.
I never attempted to do this, but I suppose that it is possible.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Thanks Aleksander. I think I'll create 2 tables, a summary and a details table. The Summary will have a url link in it to a different page that will call on the details of whichever you clicked on.
Thanks!
You're welcome, Andrew.
Glad I could be of assistance (if I even was of any lol
)
If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables