Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
fnyameino
Frequent Visitor

Create a custom static table using DAX

I am trying to design this chart in powerbi. The x axis contains different time limits. 

fnyameino_0-1670106194471.png

Currently this is design in excel and the table below is the source of data

 

Average Tests 
March2
April 1 - 284
April 29 - July 1756
July 20 - Oct 9, 202063
Oct 12 2020-Nov 11, 202215

 

This table is created after getting average test from the same column on a different table below

DateNumber of Tests
03/09/201
03/10/202
03/11/201
03/12/200

 

Currently powerbi has access to the primary dataset below

Date | Name| Race/Ethnicity | Result

 

My inital thought was using DAX ROW or DATATABLE to create a Virtual or static table and use the average function to get the numbers. I am stuck!!! I will honestly appreciate any help provided.

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @fnyameino

If your categorization is static, the easiest way would be to add a category column in your record table. Then you could  pull the category column to your plotting x-axis. 

 

the code to add the column looks like this:

 

Category =

SWICH(

    TRUE(),

    "March", TableName[Date]<=DATE(2020,3,31),

    "April 1- 28", TableName[Date]<=DATE(2020,4,28),

    "April 29- July 17", TableName[Date]<=DATE(2020,7,17),

    "July 20- Oct 9 2020", TableName[Date]>=DATE(2020,7,20)&&TableName[Date]<=DATE(2020,10,9),

    "Oct 12 2020- Nov 11, 2022", TableName[Date]>=DATE(2020,10,12)&&TableName[Date]<=DATE(2022,11,11)

)

 

if you have a dynamic grouping, say the way of categorization changes periodically and you find the change in DAX code is an issue, you may import the category table into Power BI and related with the record table. 

 

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @fnyameino

If your categorization is static, the easiest way would be to add a category column in your record table. Then you could  pull the category column to your plotting x-axis. 

 

the code to add the column looks like this:

 

Category =

SWICH(

    TRUE(),

    "March", TableName[Date]<=DATE(2020,3,31),

    "April 1- 28", TableName[Date]<=DATE(2020,4,28),

    "April 29- July 17", TableName[Date]<=DATE(2020,7,17),

    "July 20- Oct 9 2020", TableName[Date]>=DATE(2020,7,20)&&TableName[Date]<=DATE(2020,10,9),

    "Oct 12 2020- Nov 11, 2022", TableName[Date]>=DATE(2020,10,12)&&TableName[Date]<=DATE(2022,11,11)

)

 

if you have a dynamic grouping, say the way of categorization changes periodically and you find the change in DAX code is an issue, you may import the category table into Power BI and related with the record table. 

 

This worked the magic

Category =
VAR DateNow = TODAY()
RETURN
SWITCH(
    TRUE(),
    CovidTesting[Date]<=DATE(2020,3,31),"1. March" ,
    CovidTesting[Date]<=DATE(2020,4,28), "2. April 1-28",
    CovidTesting[Date]<=DATE(2020,7,17), "3. April 29-July 17",
    CovidTesting[Date]>=DATE(2020,7,20)&&CovidTesting[Date]<=DATE(2020,10,9), "4. July 20-Oct 9 2020",
    CovidTesting[Date]>=DATE(2020,10,12)&&CovidTesting[Date]<= TODAY(),"5. Oct 12 2020-Dec 13 2022"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors