Forum Discussion
Anonymous
5 years agoNot applicable
MAA - Calculation
Hello to all, Can I use this formula: YTD 2021 = Divide(CALCULATE(COUNTROWS(rclms_qa), FILTER(rclms_qa,rclms_qa[CONFORMITY]="OK"&&rclms_qa[Mars Year]=2021)),CALCULATE(COUNTROWS(rclms_qa), FILTER(r...
- Anonymous5 years ago
Hi Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
Period number = VALUE(RIGHT([Period],2))2. Create measure.
Measure = var _OK=COUNTX(FILTER(ALL('Table'),[Year]=2021&&[CONFORMITY]="OK"&&[Period number]<=13),[CONFORMITY]) var _total=cOUNTX(FILTER(ALL('Table'),[Year]=2021&&[Period number]<=13),[CONFORMITY]) return DIVIDE(_OK,_total)3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Fowmy
Super User
5 years agoAnonymous
Can you share some sample data with the desired output to have a clear understanding of your question? Mention whether you want a calculated column or measure
You can save your files in OneDrive, Google Drive, or any other cloud sharing platforms and share the link here.
- Anonymous5 years agoNot applicable
Hello
Here is an example of data:
Year CONFORMITY Period Factories 2020 OK P13 RCA 2020 OK P13 RCA 2020 OK P13 RCA 2021 OK P01 RFT 2021 WRNG_NOK P01 RFT 2021 OK P02 RNI 2021 OK P02 RNI 2021 OK P02 RNI 2021 OK P02 RNI 2021 OK P02 RNI Outcome is % of OK product vs the total (OK/NON OK or Warning) over the last 13 periods.
Hope it helps,
Hervé