Reports

Home Forums FS General Reports

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #3523
    philchett
    Participant

    I use additional columns in the database, eg livetrack, mobile phone number .
    I want to add these to say the participants reports, and variations of.

    <xsl:value-of select=”@nat_code_3166_a3″/> gives me the column for “NAT”

    what do i need to put to give me (for instance ) 12th column?

    ta in advance.

    #3525
    Joerg Ewald
    Member

    I don’t think you can reference by column number, as far as I know, it only works by column name. Have you tried with the names you used for the additional columns?

    #3549
    zenilsonrocha
    Participant

    I made several alterations in several reports : List of Participants , Results , etc.

    example in FS

    < FsCustomAttribute name = ” Phones ” value = ” 11983710000 / ” />
    < FsCustomAttribute name = ” Association ” value = “FCVL” />
    < FsCustomAttribute name = ” City ” value = ” PARNAIBA SANTANA ” />
    < FsCustomAttribute name = ” State ” value = “SP ” />
    < FsCustomAttribute name = ” status ” value = ” CONFIRMED ” />

    LINE A REPORT:

    <td>
    <xsl:value-of select=”@sponsor”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’City’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’State’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’Phones’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’Association’]/@value”/>
    </td>

    </tr>

    #3550
    zenilsonrocha
    Participant

    I made several alterations in several reports : List of Participants , Results , etc.

    example in FS

    < FsCustomAttribute name = ” Phones ” value = ” 11983710000 / ” />
    < FsCustomAttribute name = ” Association ” value = “FCVL” />
    < FsCustomAttribute name = ” City ” value = ” PARNAIBA SANTANA ” />
    < FsCustomAttribute name = ” State ” value = “SP ” />
    < FsCustomAttribute name = ” status ” value = ” CONFIRMED ” />

    LINE A REPORT:

    <td>
    <xsl:value-of select=”@sponsor”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’City’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’State’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’Phones’]/@value”/>
    </td>

    <td>
    <xsl:value-of select=”FsCustomAttributes/FsCustomAttribute[@name=’Association’]/@value”/>
    </td>

    </tr>

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.