Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I want to clarify my question. Think about there is a database that shows composites analysis results. But, for some level of results, additioanl re-test (detailed analysis) performed. Total database will become generally not detailed analysis data. But inside there will be some additional detailed analysis results. I want to filter in the summary report to see farm data as;
Thanks
farm id | detailed analysis | Analysis results | # of actives |
---|---|---|---|
farm 01 | No | 100 | 15 |
farm 02 | Yes | 50 | 20 |
farm 02 | No | 150 | 20 |
farm 03 | Yes | 90 | 50 |
Message was edited by: mehmet hamurcuoglu
Hi,
I am not a 100% on what your are trying to archive.
But you can check the Condtion on the true false using the Peek or previous function.
Something like
Load
...
IF( ID =PEEK(ID,-1),
IF( (condtion = 'False' AND Peek(condition,-1) = ' True') OR (condtion = 'True' AND Peek(condition,-1) = ' False'),
'Your Calculation')
) As New Field
....
From Table
Order By ID;
Mark
Hi,
I am not a 100% on what your are trying to archive.
But you can check the Condtion on the true false using the Peek or previous function.
Something like
Load
...
IF( ID =PEEK(ID,-1),
IF( (condtion = 'False' AND Peek(condition,-1) = ' True') OR (condtion = 'True' AND Peek(condition,-1) = ' False'),
'Your Calculation')
) As New Field
....
From Table
Order By ID;
Mark
What is the expected output and in which object you want it in?
for pivot table and output is below
sum(weight*#ofbox)
You may do in script
if(condition='True',weight*[#ofbox],0)
or as expression
Sum({<condition='True'>} weight*[#ofbox])
I was looking for the numerical output....
I changed my responsibilities Sunny
hope is understood
I'm sorry for my english level
if(condition='True',weight*[#ofbox],0)