Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Order No. 9689 -- RsFormsPro graphs
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Order No. 9689 -- RsFormsPro graphs
#30677
Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 0
Hi
I have problems to show graphical statistics on my Ari Data Table module

I'm taking data from rsforms pro submissions field on MySQL db what i'm trying to obtain is something like images attached

In few words i need a graphical representation of submissions and name of the forms submitted

i have tried in this way

( SELECT COUNT( * )
FROM `ctlmz_rsform_submissions`
WHERE FormId =14
) UNION ( SELECT FormName FROM `ctlmz_rsform_forms` WHERE FormID=14)

but i'm obtaining syntax errors

Could someone help me

Thank you to all of you great module
Last Edit: 2012/08/18 18:09 By admin.
The administrator has disabled public write access.
 
#30678
Re:Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 748
Hello,

Could you send SQL dump for "ctlmz_rsform_submissions" and "ctlmz_rsform_forms" tables by email so we can investigate the problem?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#30683
Re:Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 0
email sent

Thank you
The administrator has disabled public write access.
 
#30687
Re:Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 748
Set "SQL -> SQL query" parameter to the next value:


SELECT
FormName,
COUNT(S.SubmissionId) AS Count
FROM
`#__rsform_forms` F LEFT JOIN `#__rsform_submissions` S
ON F.FormId = S.FormId
GROUP BY
F.FormId
ORDER BY
F.FormName ASC


Set "SQL -> Revert data" to "Yes", set "Choose table type" to "ARI GChart" and "ARI GChart -> Type" to "Column chart".

Regards,
ARI Soft
The administrator has disabled public write access.
 
#30690
Re:Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 0
Thank you it's working like a charm you are great

last question:

It's possible to build a graphic in authomatic selecting a value from a form ?

example:

i have a table built with ari data with all the fields extracted from a table db

when i select a column can i have showed in a graphical way all the values like in the previous post ?
Last Edit: 2012/08/19 07:56 By pavit66.Reason: add files
The administrator has disabled public write access.
 
#30691
Re:Order No. 9689 -- RsFormsPro graphs 11 Years, 10 Months ago Karma: 748
Sorry, but the module doesn't support this ability.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12