This is possible, though it's a bit of work. You would need to make each of the first address fields a variable, as well as the 'yes' checkbox. Once that was done, in each of the repeated address fields formula box you would need to add code like: if(VAR_YESNO=='tfa_Yes'){VAR_ADDRESS}
A better solution would be to make the second set of address data a conditional section based off the yes/no question. If yes, then nothing is displayed and the user doesn't have to look over the data again. If no, the blank address fields are displayed again to the user.
This is basically the same idea as was most recently described by jlabau: http://www3.formassembly.com/forum/discussion/421/repeatable-answers/#Item_3
Your formula is incorrect: if(tfa_SameaddressasPar='tfa_Yes1'){poneadd} says "If I can assign a string to variable tfa_SameaddressesasPar, return poneadd".
What you want is something like: if(String(CALC_SAMEADD).replace(/0/g,"")=='tfa_Yes1'){poneadd} Which says "If the variable CALC_SAMEADD is equal to the string tfa_Yes1, then return poneadd"
I'm not quite sure what happened there. Your HTMLSections had their ids removed. It may have been a browser error. Can you tell us which browser/version you were using?
In any case, I reassigned ids to the sections and they began working properly.
Hello, you had the code most of the way there. I had to go into your form, and adjust the 'Same as first parent' choices to be a variable, called 'SAMEASFIRST' and I changed your formula from having '=' to the quality test '=='.
The formula is now: if(String(SAMEASFIRST).replace(/0/g,"")=='tfa_Yes1'){poneadd}else{""}