TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Farhan Shariff
NA
933
241.2k
DataTable Expression
Jul 29 2014 7:03 AM
I am trying to set expression for the column Lower and Upper
Formula
cpk = Min[ ( P50 - LSL / 3(P50 - P5)/1.645), USL -
P
50
/ 3(
P
95 - P50)/1.645) ]
p50 = Median
Lower.Expression = "(Convert(Median,'System.Double')-Convert(LSL,'System.Double'))/(((3.0)*(Convert(Median,'System.Double')-Convert(point5,'System.Double'))/(1.645))";
//Error The expression is missing the closing parenthesis.
Upper.Expression = "(Convert(USL,'System.Double')-Convert(Median,'System.Double'))/(((3.0)*(Convert(point95,'System.Double')-Convert(Median,'System.Double'))/(1.645))";
CpK.Expression = "IIF(Lower < Upper, Lower, Upper)";
Reply
Answers (
4
)
How to change the System Volume programmatically
method