adding a new measure

Change-Id: I2cc280d30436be187e137ac3f7bca94bd6fd4f7b
diff --git a/demo-l4c.view.lkml b/demo-l4c.view.lkml
index 4ca46a5..10d829f 100644
--- a/demo-l4c.view.lkml
+++ b/demo-l4c.view.lkml
@@ -176,4 +176,10 @@
     drill_fields: [customer_entities.id ,customer_entities.name, id ,name, duns_id, parent_id]
   }
 
+  measure: count_parent {
+    description: "Parent Account Counts"
+    type: count_distinct
+    sql: ${parent_id} ;;
+  }
+
 }