Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Can any one give ideas for the below requirement.
I have data like below.
NO | Count of Sep | Count of Aug |
1 | 12 | 84 |
2 | 96 | 02 |
3 | 12 | 78 |
I need output like below.
NO | Count of Sep | Count of Aug |
1 | 12 | 84 |
2 | 96 | 02 |
3 | 12 | 78 |
Regards
Sathish
I added these 2 and working
Expression 1 Text color
If(Column(1) < Column(2), Red(), Green())
Text format
If(Column(1) < Column(2), '<B>', '<B>')
Expression 2 Text color
If(Column(1) > Column(2), Red(), Green())
Text format
If(Column(1) < Column(2), '<B>', '<B>')
And output i got it like
Go to Expression >> Text color >> write your codition
Like this you want
HI P M,
Thanks For your response,
here I need what ever we have high count that all are need to see in Green Low Count I need to see red.
Note: here we need to calculate Row wise with two columns.
Regards'
Sathish
Can this works?
Text color - If(Column(1) < Column(2), Green(), Red())
Format - If(Column(1) < Column(2), '<B>', '<B>')
try like this
Text color -
for first expression
If(Column(1) > Column(2), Green(), Red())
for Second expression
If(Column(2) > Column(1), Green(), Red())
What is condition for high range that you mention.
I added these 2 and working
Expression 1 Text color
If(Column(1) < Column(2), Red(), Green())
Text format
If(Column(1) < Column(2), '<B>', '<B>')
Expression 2 Text color
If(Column(1) > Column(2), Red(), Green())
Text format
If(Column(1) < Column(2), '<B>', '<B>')
And output i got it like
Hi Anil,
Thanks a lot its working awesome.
Regards
Sathish