<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Advanced Conditional Logic ?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic</link>
		<description>Gravity Support Forums Topic: Advanced Conditional Logic ?</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 10:48:13 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/advanced-conditional-logic" rel="self" type="application/rss+xml" />

		<item>
			<title>WDOY on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-201678</link>
			<pubDate>Mon, 08 Apr 2013 21:55:30 +0000</pubDate>
			<dc:creator>WDOY</dc:creator>
			<guid isPermaLink="false">201678@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;nvm I figured it out by using:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;for($i = 1; $i &#38;lt;= 10; $i++)
                $questions[] = substr($lead[$i], 0, 1);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thank you so much for your help!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WDOY on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-201644</link>
			<pubDate>Mon, 08 Apr 2013 21:32:40 +0000</pubDate>
			<dc:creator>WDOY</dc:creator>
			<guid isPermaLink="false">201644@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you!! One quick question, since the answers are going to look like this:&#60;/p&#62;
&#60;p&#62;A. Something here&#60;br /&#62;
B. Something else&#60;br /&#62;
C. Something another&#60;/p&#62;
&#60;p&#62;How, with that code, would I strip all characters except the first? I'm assuming that would be the best solution...&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-185503</link>
			<pubDate>Tue, 26 Mar 2013 11:58:38 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">185503@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please take a look at this code. &#60;a href=&#34;http://pastebin.com/B1sjjwwQ&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/B1sjjwwQ&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;One problem will be if out of 10 questions someone answers where there is no clear &#34;mostly&#34; (i.e. 5 and 5, or 4, 4 and 2.)  That is not accounted for in the code, but the approach should be sound.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WDOY on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-184844</link>
			<pubDate>Tue, 26 Mar 2013 02:16:43 +0000</pubDate>
			<dc:creator>WDOY</dc:creator>
			<guid isPermaLink="false">184844@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for your answer, that is exactly what I want to do! The gform_confirmation page looks easy enough to figure out. Could you point towards a tutorial or a page on how I would add up the selected radio buttons, or how I could hook into this from the functions file? I just bought the plugin today so I am still learning. Thank you!!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-184779</link>
			<pubDate>Tue, 26 Mar 2013 01:04:42 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">184779@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It does make sense.  You want to change the confirmation message conditionally based on the answers which are submitted.  You will have to total all the C submissions, all the B submissions and all the A submissions and then change the confirmation message dynamically.  You can use PHP to count up the number of A, B and C choices, then you can use the gform_confirmation filter to change the confirmation based on which choice was made most often.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_confirmation&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_confirmation&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WDOY on "Advanced Conditional Logic ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/advanced-conditional-logic#post-184576</link>
			<pubDate>Mon, 25 Mar 2013 22:08:18 +0000</pubDate>
			<dc:creator>WDOY</dc:creator>
			<guid isPermaLink="false">184576@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a client who wants to have 10 questions all with 3 radio buttons (A, B and C). At the end of the questionnaire an HTML box will display if most of the answers are A, a different one if most of the answers are B, and a different one if most of the answers are C. Is this possible with Gravity Forms? And does my explanation make sense? Thanks! :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
