{"id":1371585,"date":"2022-03-16T11:18:26","date_gmt":"2022-03-16T11:18:26","guid":{"rendered":"https:\/\/www.collaboris.com\/?p=1371585"},"modified":"2022-08-09T15:01:29","modified_gmt":"2022-08-09T15:01:29","slug":"display-status-docread-reading-tasks","status":"publish","type":"post","link":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/","title":{"rendered":"Display the status of DocRead reading tasks"},"content":{"rendered":"<h1 style=\"\">Display the status of DocRead reading tasks<\/h1>\n<p>I&#8217;m currently trying to learn the basics of Power BI to try and replicate some of my existing reports. I figured I would learn faster by trying help our customers making the most out of DocRead rather than following a set training course covering information I don&#8217;t need to know.&nbsp;<\/p>\n<p>My end goal is to use Power BI to generate custom reports for our DocRead compliance tool. DocRead stores all of its data in a SQL database and has views that have been specifically created for reporting. However, step one is for me to learn how to replicate the existing reports.&nbsp;<\/p>\n<h2 style=\"\">The current data structure<\/h2>\n<p>In the DocRead database there are two fields:<\/p>\n<ol>\n<li>The <strong>Status<\/strong> field. This is a text field and can either be &#8220;assigned&#8221; or &#8220;completed&#8221; and<\/li>\n<li>the <strong>Task overdue<\/strong> field. This is a boolean field which is calculated from the due date of the task. It can either be &#8220;True&#8221; (i.e. overdue because the due date was in the past) or &#8220;False&#8221; (because the due date had not arrived).&nbsp;<\/li>\n<\/ol>\n<p>__CONFIG_colors_palette__{&#8220;active_palette&#8221;:0,&#8221;config&#8221;:{&#8220;colors&#8221;:{&#8220;16871&#8221;:{&#8220;name&#8221;:&#8221;Accent Darker&#8221;,&#8221;parent&#8221;:&#8221;43816&#8243;,&#8221;lock&#8221;:{&#8220;saturation&#8221;:0}},&#8221;43816&#8243;:{&#8220;name&#8221;:&#8221;Main Accent&#8221;,&#8221;parent&#8221;:-1},&#8221;4592d&#8221;:{&#8220;name&#8221;:&#8221;Accent Lighter&#8221;,&#8221;parent&#8221;:&#8221;43816&#8243;,&#8221;lock&#8221;:{&#8220;lightness&#8221;:1,&#8221;saturation&#8221;:1}}},&#8221;gradients&#8221;:[]},&#8221;palettes&#8221;:[{&#8220;name&#8221;:&#8221;Default&#8221;,&#8221;value&#8221;:{&#8220;colors&#8221;:{&#8220;16871&#8221;:{&#8220;val&#8221;:&#8221;rgb(3, 3, 3)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:80,&#8221;l&#8221;:0.01,&#8221;s&#8221;:-0.05}},&#8221;43816&#8243;:{&#8220;val&#8221;:&#8221;rgb(171, 212, 107)&#8221;,&#8221;hsl&#8221;:{&#8220;h&#8221;:83,&#8221;s&#8221;:0.5497,&#8221;l&#8221;:0.6255,&#8221;a&#8221;:1}},&#8221;4592d&#8221;:{&#8220;val&#8221;:&#8221;rgb(244, 250, 235)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:84,&#8221;l&#8221;:0.95,&#8221;s&#8221;:0.58}}},&#8221;gradients&#8221;:[]},&#8221;original&#8221;:{&#8220;colors&#8221;:{&#8220;16871&#8221;:{&#8220;val&#8221;:&#8221;rgb(29, 23, 12)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:38,&#8221;s&#8221;:0.41,&#8221;l&#8221;:0.08,&#8221;a&#8221;:1}},&#8221;43816&#8243;:{&#8220;val&#8221;:&#8221;rgb(255, 204, 102)&#8221;,&#8221;hsl&#8221;:{&#8220;h&#8221;:40,&#8221;s&#8221;:1,&#8221;l&#8221;:0.7,&#8221;a&#8221;:1}},&#8221;4592d&#8221;:{&#8220;val&#8221;:&#8221;rgb(250, 246, 236)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:42,&#8221;s&#8221;:0.58,&#8221;l&#8221;:0.95,&#8221;a&#8221;:1}}},&#8221;gradients&#8221;:[]}}]}__CONFIG_colors_palette__  <\/p>\n<h3 style=\"\"><span>Are your policies&nbsp;<\/span><span><strong>read on time and by the right people?<\/strong><\/span><\/h3>\n<p style=\"text-align: center;\">DocRead makes compliance simple<\/p>\n<p>  <a href=\"\" style=\"border-radius: 0px; overflow: hidden;\"> <span style=\"\"><span style=\"\">See how<\/span><\/span> <\/a>   <\/p>\n<h2 style=\"\">My requirement<\/h2>\n<p>I wanted to create a new field in my database table to aggregate the values from these two fields to provide a single overall status.<\/p>\n<p>The logic goes as follows:<\/p>\n<p>If the DocRead task status was &#8220;completed&#8221;, then the final result needed to be &#8220;completed&#8221; (comparing to due dates is irrelevant because the task is completed).<\/p>\n<p>For the assigned tasks, there were 2 possibilities. Either&nbsp;<\/p>\n<ol>\n<li>the due date for the compliance task was past, so the task was &#8220;Overdue&#8221;, or&nbsp;<\/li>\n<li>the due date was in the future, so the task was &#8220;Assigned&#8221;<\/li>\n<\/ol>\n<h2 style=\"\">The solution<\/h2>\n<p>I knew I needed to use 2 nested IF statements, but the second element was a Boolean field (showing TRUE\/FALSE) After many failed attempts to get the IF statement correct, I realised that because the Boolean value was already giving a TRUE\/FALSE answer, the answer was simpler than I thought.<\/p>\n<p>= Table.AddColumn(Readership_vwTaskInfo, &#8220;RealStatus&#8221;, each if [Status] = &#8220;Completed&#8221; then &#8220;Completed&#8221; else if [Overdue] then &#8220;Overdue&#8221; else &#8220;Assigned&#8221;)<\/p>\n<p>I&#8217;ve broken this down below:<\/p>\n<table data-rows=\"5\" data-cols=\"2\">\n<thead>\n<tr>\n<th>\n<p style=\"\">Element in formula<\/p>\n<\/th>\n<th>\n<p style=\"\">What it does<\/p>\n<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\n<p>Table.AddColumn(Readership_vwTaskInfo, &#8220;RealStatus&#8221;,&nbsp;<\/p>\n<\/td>\n<td>\n<p>This element adds a column for my new field called &#8220;RealStatus&#8221;<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p>each if [Status] = &#8220;Completed&#8221; then &#8220;Completed&#8221;<\/p>\n<\/td>\n<td>\n<p>This looks for the value in the Status field for each row of my database table independently. If the Status value is &#8220;Completed&#8221; then it adds the value &#8220;Completed&#8221; into my new Real Status field<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p>else if [Overdue] then &#8220;Overdue&#8221;<\/p>\n<\/td>\n<td>\n<p>As the [Overdue] field is already a boolean value and returns either True or False, it doesn&#8217;t need to be compared to another value to work out whether the answer is True or false, the IF statement can work already. IF the [Overdue] field is true (i.e. it has been flagged as Yes\/Overdue in the database) then add the value &#8220;Overdue&#8221; into the &#8220;RealStatus&#8221; field<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p>else &#8220;Assigned&#8221;<\/p>\n<\/td>\n<td>\n<p>The final part of the IF statement describes what to do if neither of the first criteria are met. In my case, I want to give the task an &#8220;Assigned&#8221; RealStatus.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>I was therefore able to create one new field showing whether the compliance tasks sent by DocRead were Assigned, Overdue or Completed and use this information in my Power BI pie chart.<\/p>\n<p><span><a href=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2022\/03\/RealStatus.png\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" alt=\"\" data-id=\"1371594\" width=\"444\" data-init-width=\"444\" height=\"283\" data-init-height=\"283\" title=\"RealStatus\" loading=\"lazy\" src=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2022\/03\/RealStatus.png?_t=1647265950\" data-link-wrap=\"true\" data-width=\"444\" data-height=\"283\"><\/a><\/span>__CONFIG_colors_palette__{&#8220;active_palette&#8221;:0,&#8221;config&#8221;:{&#8220;colors&#8221;:{&#8220;4882e&#8221;:{&#8220;name&#8221;:&#8221;Main Accent&#8221;,&#8221;parent&#8221;:-1},&#8221;aac4b&#8221;:{&#8220;name&#8221;:&#8221;Accent Transparent&#8221;,&#8221;parent&#8221;:&#8221;4882e&#8221;}},&#8221;gradients&#8221;:[]},&#8221;palettes&#8221;:[{&#8220;name&#8221;:&#8221;Default&#8221;,&#8221;value&#8221;:{&#8220;colors&#8221;:{&#8220;4882e&#8221;:{&#8220;val&#8221;:&#8221;rgb(52, 52, 52)&#8221;,&#8221;hsl&#8221;:{&#8220;h&#8221;:0,&#8221;s&#8221;:0.01,&#8221;l&#8221;:0.2039,&#8221;a&#8221;:1}},&#8221;aac4b&#8221;:{&#8220;val&#8221;:&#8221;rgba(52, 50, 50, 0.4)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:0,&#8221;l&#8221;:0.2,&#8221;s&#8221;:0}}},&#8221;gradients&#8221;:[]},&#8221;original&#8221;:{&#8220;colors&#8221;:{&#8220;4882e&#8221;:{&#8220;val&#8221;:&#8221;rgb(32, 205, 166)&#8221;,&#8221;hsl&#8221;:{&#8220;h&#8221;:166,&#8221;s&#8221;:0.72,&#8221;l&#8221;:0.46,&#8221;a&#8221;:1}},&#8221;aac4b&#8221;:{&#8220;val&#8221;:&#8221;rgba(32, 205, 166, 0.4)&#8221;,&#8221;hsl_parent_dependency&#8221;:{&#8220;h&#8221;:166,&#8221;s&#8221;:0.72,&#8221;l&#8221;:0.46,&#8221;a&#8221;:0.4}}},&#8221;gradients&#8221;:[]}}]}__CONFIG_colors_palette__  <\/p>\n<h3 style=\"text-align: center;\"><strong>See what DocRead can do for you<\/strong><\/h3>\n<p>Book a custom demo with one of our experts now to discuss your specific requirements and find out how DocRead can help you stay compliant<\/p>\n<p>     <a href=\"\" style=\"\"> <span style=\"\"><span data-tcb_hover_state_parent=\"\" style=\"\"><strong>book now<\/strong><\/span><\/span> <\/a>   <\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">June 13, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/\" title=\"Creating a SharePoint Document Library Dashboard\" data-css=\"\">Creating a SharePoint Document Library Dashboard<\/a><\/span><\/h2>\n<p>Creating a SharePoint document library dashboardSharePoint provides excellent opportunities to create document repositories. You <a href=\"https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/#more-1372538\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">May 30, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/create-reporting-hierarchy-in-power-bi\/\" title=\"Create a Reporting Hierarchy in Power BI\" data-css=\"\">Create a Reporting Hierarchy in Power BI<\/a><\/span><\/h2>\n<p>Create a Reporting Hierarchy in Power BI&nbsp;Creating hierarchies in your Power BI data provides <a href=\"https:\/\/www.collaboris.com\/create-reporting-hierarchy-in-power-bi\/#more-1372448\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/create-reporting-hierarchy-in-power-bi\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">May 17, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/advanced-docread-reporting-with-power-bi\/\" title=\"Advanced DocRead reporting with Power BI\" data-css=\"\">Advanced DocRead reporting with Power BI<\/a><\/span><\/h2>\n<p>Advanced DocRead reporting with Power BI&nbsp;The&nbsp;DocRead reporting suite&nbsp;provides several reports to help you manage <a href=\"https:\/\/www.collaboris.com\/advanced-docread-reporting-with-power-bi\/#more-1372316\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/advanced-docread-reporting-with-power-bi\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">May 16, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/downloadable-backgrounds-for-power-bi\/\" title=\"Downloadable background templates for your Power BI reports\" data-css=\"\">Downloadable background templates for your Power BI reports<\/a><\/span><\/h2>\n<p>Downloadable background templates for your Power BI reportsPower BI allows you to create amazing <a href=\"https:\/\/www.collaboris.com\/downloadable-backgrounds-for-power-bi\/#more-1372321\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/downloadable-backgrounds-for-power-bi\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">May 13, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/how-to-get-docread-data-into-power-bi\/\" title=\"How to get your DocRead data into Power BI\" data-css=\"\">How to get your DocRead data into Power BI<\/a><\/span><\/h2>\n<p>How to import your DocRead data into Power BIThe DocRead reporting suite provides several <a href=\"https:\/\/www.collaboris.com\/how-to-get-docread-data-into-power-bi\/#more-1372296\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/how-to-get-docread-data-into-power-bi\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n<p style=\"font-size: var(--tve-font-size, 13px);\"><span data-shortcode=\"tcb_post_published_date\" data-shortcode-name=\"Post date\" data-extra_key=\"\" data-attr-type=\"published\" data-attr-date-format-select=\"F j, Y\" data-attr-date-format=\"F j, Y\" data-attr-show-time=\"0\" data-attr-time-format-select=\"g:i a\" data-attr-time-format=\"\" data-attr-link=\"0\" data-attr-target=\"1\" data-attr-rel=\"0\" data-option-inline=\"1\">May 10, 2022 <\/span><\/p>\n<h2 style=\"\"><span data-shortcode=\"tcb_post_title\" data-shortcode-name=\"Post title\" data-extra_key=\"\" data-attr-link=\"1\" data-attr-target=\"0\" data-attr-rel=\"0\" data-option-inline=\"1\" data-attr-static-link=\"{&quot;className&quot;:&quot;tve-froala fr-basic&quot;,&quot;href&quot;:&quot;https:\/\/www.collaboris.com\/creating-sharepoint-document-library-dashboard\/&quot;,&quot;title&quot;:&quot;Creating a SharePoint Document Library Dashboard&quot;,&quot;class&quot;:&quot;tve-froala fr-basic&quot;}\" data-attr-css=\"\"><a href=\"https:\/\/www.collaboris.com\/track-reading-tasks-for-new-hires-powerbi\/\" title=\"Keeping track of compliance tasks for new hires in Power BI\" data-css=\"\">Keeping track of compliance tasks for new hires in Power BI<\/a><\/span><\/h2>\n<p>Keeping track of compliance tasks for new hires with Power BI&nbsp;Ensuring all of your <a href=\"https:\/\/www.collaboris.com\/track-reading-tasks-for-new-hires-powerbi\/#more-1372277\">&#8230;<\/a><\/p>\n<p><a href=\"https:\/\/www.collaboris.com\/track-reading-tasks-for-new-hires-powerbi\/\"><span><span>Read More<\/span><\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Display the status of DocRead reading tasks I&#8217;m currently trying to learn the basics of Power BI to try and replicate some of my existing reports. I figured I would learn faster by trying help our customers making the most out of DocRead rather than following a set training course covering information I don&#8217;t need [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":2108,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"","footnotes":""},"categories":[1,42],"tags":[],"class_list":["post-1371585","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-docread","category-power-bi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v26.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Display the status of DocRead reading tasks<\/title>\n<meta name=\"description\" content=\"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Display the status of DocRead reading tasks\" \/>\n<meta property=\"og:description\" content=\"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\" \/>\n<meta property=\"og:site_name\" content=\"Collaboris\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Collaboris\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-16T11:18:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-09T15:01:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\" \/>\n\t<meta property=\"og:image:width\" content=\"820\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Helen Jones\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@helen.jones@collaboris.co.uk\" \/>\n<meta name=\"twitter:site\" content=\"@Collaboris\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Helen Jones\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\"},\"author\":{\"name\":\"Helen Jones\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/df8a602d5db57fce86940a1aa6385aef\"},\"headline\":\"Display the status of DocRead reading tasks\",\"datePublished\":\"2022-03-16T11:18:26+00:00\",\"dateModified\":\"2022-08-09T15:01:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\"},\"wordCount\":937,\"publisher\":{\"@id\":\"https:\/\/www.collaboris.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"articleSection\":[\"DocRead\",\"Power BI\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\",\"url\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\",\"name\":\"Display the status of DocRead reading tasks\",\"isPartOf\":{\"@id\":\"https:\/\/www.collaboris.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"datePublished\":\"2022-03-16T11:18:26+00:00\",\"dateModified\":\"2022-08-09T15:01:29+00:00\",\"description\":\"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field\",\"breadcrumb\":{\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage\",\"url\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"contentUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"width\":820,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.collaboris.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Display the status of DocRead reading tasks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.collaboris.com\/#website\",\"url\":\"https:\/\/www.collaboris.com\/\",\"name\":\"Collaboris\",\"description\":\"We make compliance simple\",\"publisher\":{\"@id\":\"https:\/\/www.collaboris.com\/#organization\"},\"alternateName\":\"DocRead\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.collaboris.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.collaboris.com\/#organization\",\"name\":\"Collaboris\",\"alternateName\":\"DocRead\",\"url\":\"https:\/\/www.collaboris.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png\",\"contentUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png\",\"width\":150,\"height\":40,\"caption\":\"Collaboris\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Collaboris\/\",\"https:\/\/x.com\/Collaboris\",\"https:\/\/www.linkedin.com\/company\/collaboris\"],\"description\":\"Collaboris is a Software company that created a policy management tool called DocRead.\",\"email\":\"info@collaboris.com\",\"telephone\":\"02079935140\",\"legalName\":\"Collaboris Ltd\",\"foundingDate\":\"2007-12-03\",\"vatID\":\"GB928895360\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/df8a602d5db57fce86940a1aa6385aef\",\"name\":\"Helen Jones\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cb6011a4dfb291a2bb0e30fb70581537bb77c6e70a1c8e887e16ae98fc5b518d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cb6011a4dfb291a2bb0e30fb70581537bb77c6e70a1c8e887e16ae98fc5b518d?s=96&d=mm&r=g\",\"caption\":\"Helen Jones\"},\"sameAs\":[\"https:\/\/x.com\/helen.jones@collaboris.co.uk\"],\"url\":\"https:\/\/www.collaboris.com\/author\/helen-jones\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Display the status of DocRead reading tasks","description":"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/","og_locale":"en_GB","og_type":"article","og_title":"Display the status of DocRead reading tasks","og_description":"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field","og_url":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/","og_site_name":"Collaboris","article_publisher":"https:\/\/www.facebook.com\/Collaboris\/","article_published_time":"2022-03-16T11:18:26+00:00","article_modified_time":"2022-08-09T15:01:29+00:00","og_image":[{"width":820,"height":300,"url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","type":"image\/png"}],"author":"Helen Jones","twitter_card":"summary_large_image","twitter_creator":"@helen.jones@collaboris.co.uk","twitter_site":"@Collaboris","twitter_misc":{"Written by":"Helen Jones","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#article","isPartOf":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/"},"author":{"name":"Helen Jones","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/df8a602d5db57fce86940a1aa6385aef"},"headline":"Display the status of DocRead reading tasks","datePublished":"2022-03-16T11:18:26+00:00","dateModified":"2022-08-09T15:01:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/"},"wordCount":937,"publisher":{"@id":"https:\/\/www.collaboris.com\/#organization"},"image":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","articleSection":["DocRead","Power BI"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/","url":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/","name":"Display the status of DocRead reading tasks","isPartOf":{"@id":"https:\/\/www.collaboris.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage"},"image":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","datePublished":"2022-03-16T11:18:26+00:00","dateModified":"2022-08-09T15:01:29+00:00","description":"This post describes how to create a single field describing the status of a DocRead task in Power BI using an IF statement and boolean field","breadcrumb":{"@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#primaryimage","url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","contentUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","width":820,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.collaboris.com\/display-status-docread-reading-tasks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.collaboris.com\/"},{"@type":"ListItem","position":2,"name":"Display the status of DocRead reading tasks"}]},{"@type":"WebSite","@id":"https:\/\/www.collaboris.com\/#website","url":"https:\/\/www.collaboris.com\/","name":"Collaboris","description":"We make compliance simple","publisher":{"@id":"https:\/\/www.collaboris.com\/#organization"},"alternateName":"DocRead","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.collaboris.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.collaboris.com\/#organization","name":"Collaboris","alternateName":"DocRead","url":"https:\/\/www.collaboris.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png","contentUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png","width":150,"height":40,"caption":"Collaboris"},"image":{"@id":"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Collaboris\/","https:\/\/x.com\/Collaboris","https:\/\/www.linkedin.com\/company\/collaboris"],"description":"Collaboris is a Software company that created a policy management tool called DocRead.","email":"info@collaboris.com","telephone":"02079935140","legalName":"Collaboris Ltd","foundingDate":"2007-12-03","vatID":"GB928895360","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/df8a602d5db57fce86940a1aa6385aef","name":"Helen Jones","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cb6011a4dfb291a2bb0e30fb70581537bb77c6e70a1c8e887e16ae98fc5b518d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cb6011a4dfb291a2bb0e30fb70581537bb77c6e70a1c8e887e16ae98fc5b518d?s=96&d=mm&r=g","caption":"Helen Jones"},"sameAs":["https:\/\/x.com\/helen.jones@collaboris.co.uk"],"url":"https:\/\/www.collaboris.com\/author\/helen-jones\/"}]}},"modified_by":"Helen Jones","_links":{"self":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/1371585","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/comments?post=1371585"}],"version-history":[{"count":28,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/1371585\/revisions"}],"predecessor-version":[{"id":1372939,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/1371585\/revisions\/1372939"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/media\/2108"}],"wp:attachment":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/media?parent=1371585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/categories?post=1371585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/tags?post=1371585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}