Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
PFA,
Please anyone give some suggestions.............
Regards,
Paul
Paul
Could you clarify what you mean by show count of ALERT , as I can see no field called ALERT in your data model.
Best Regards, Bill
Hi Bill,
Alert means already i calculated field in my STRAIGHT table
Actually i want to show alerts count.... and Comparison with MonthlyCoverage and ActualDemand
Paul
You could create a field called Alert in your load script :
If ([Actual Demand]>[Monthly Coverage] ,Dual('Alert',1) , Dual('Ok',0)) as Alert ,
Then simply use the Sum() function to give you the count :
Sum ( [Alert] )
If you are not familiar with the Dual function, then look it up in the Help.
Best Regards, Bill