Bala Ramakrishnan 2 Posted May 1, 2019 Share Posted May 1, 2019 Hello I want to put input confidence interval % thorugh a text box and I want my data and chart to filter based on the input. U95 and L95 are available by default but I want is if user is inputting 80% or 70%, confidence interval upper limit and lower limit have to be calculated and limit my data. So basically Z score has to be calculated. Right now I can only hardcode values it like for example Avg([Value]) - (1.96 * (StdDev([Value]) / Sqrt(Count()))) AS [Lower Limit 95% CI], Avg([Value]) + (1.96 * (StdDev([Value]) / Sqrt(Count()))) AS [upper Limit 95% CI] What i want is based on input, (80%) means its corresponding z value has to be automatically calculated Is there a way I can do it. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now