Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7738355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:14:34+00:00 2026-06-01T08:14:34+00:00

I am trying to evaluate two dynamically assigned variables; then attempting to assign a

  • 0

I am trying to evaluate two dynamically assigned variables; then attempting to assign a dynamic variable based on the outcome.
I have much longer code where this works, but I am trying to consolidate.

Here is what I have for the consolidated code:

<cfloop list="dog,cat,pig,horse" index="i">      
    <cfif (#trim([i]_FMCTotal)# /2) GT #trim([i]_FMC)#>
        <cfset #i#colorCode = 'red'>
    <cfelseif (#trim([i]_FMCTotal)# /1.5) GT #trim([i]_FMC)#>
        <cfset #i#colorCode = 'yellow'>
    <cfelse>
        <cfset #i#colorCode = 'green'>
    </cfif>  
</cfloop>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T08:14:36+00:00Added an answer on June 1, 2026 at 8:14 am

    Not much of the code you have posted would get through the parser as you have a few invalid CFML constructs such as [i]_FMCTotal which is not a valid variable name. Also your use of the hashes is not required within the conditional statements, the hashes are used for output.

    To answer the question there is evaluate() but a far more readable, secure and maintainable solution would be to leverage a struct for the colour codes.

    <cfset colorCodes = {}>
    <!--- presuming ..._FMCTotal and .._FMC are reworked as structs also --->
    <cfloop list="dog,cat,pig,horse" index="i">      
        <cfif (FMCTotal[i] /2) GT trim(FMC[i])>
            <cfset colorCode[i] = 'red'>
        <cfelseif (trim(FMCTotal[i] /1.5) GT trim(FMC[i])>
            <cfset colorCode[i] = 'yellow'>
        <cfelse>
            <cfset colorCode[i] = 'green'>
        </cfif>  
    </cfloop>
    

    The result of this would be a data structure from which you can easily access any of the items value in subsequent code

    { // possible result
        'pig': 'green'
      , 'cat': 'yellow'
      , 'dog': 'red'
      , 'horse': 'green'
    }
    
    colorCode['dog'] // => 'red'
    

    If you don’t have access to rework the _FMC variables you could evaluate those evaluate('#i#_FMCTotal') but it would be far cleaner to use a collection for these also as in my example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to evaluate an XPath varable I'm building dynamically based on the position
I have a hibernate filter that needs to evaluate using two different columns in
I'm trying to compare two variables of type nullable(of boolean) in VB.NET 2010. One
I'm trying to evaluate the purchase of a statistical tool. This will be used
I am trying to evaluate the answer provided here , and am getting the
I'm trying to evaluate an xml node using xpath and i'm not sure why
I am trying to evaluate user-submitted urls to find out whether they contain valid
In objective-c I am trying to evaluate the following expression: _c = _f /
What are comparable database like Mongo DB? We are trying to evaluate Mongo DB
I've been trying to grok the org.apache.commons.beanutils library for a method/idiom to evaluate for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.