cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
SaiKumar
Frequent Visitor

Migrating Tableau to Power Bi

I am currently working on migrating Tableau Reports to Power BI. I am currently facing problems in converting the Tableau Calculation. Needed help in this.

 

Length = IFNULL((([Por Approval Orig]-[Gl Code Issue Date])*12)/365,0)

 

Por Approval and Gl Code Issue Date are Direct Columns

1 ACCEPTED SOLUTION

@SaiKumar Now I got it.

= IF(MAX(Table[Por Approval Orig])=BLANK() || MAX(Table[Gl Code Issue Date])=BLANK(),0,((MAX(Table[Por Approval Orig])-MAX(Table[Gl Code Issue Date]))*12)/365)

 

NOTE: Replace "Table " wiht your original table name.

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

7 REPLIES 7
Tahreem24
Super User
Super User

@SaiKumar  You can try this out:

Length = IFERROR((([Por Approval Orig]-[Gl Code Issue Date])*12)/365,0)

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Por Approval Orig and Gl Code Issue Date are Direct Columns not Measures

@SaiKumar , try to take SUM of them.

 =  IFERROR(((SUM([Por Approval Orig])-SUM([Gl Code Issue Date]))*12)/365,0)

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

1.pngThe second row in length of planning process should come zero.I tried with the solution you provided but its not working.

@SaiKumar Oh I didn't realize that those are your dates columns.

Instead of SUM kindly use MAX.

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Used MAX still getting the same values

 

@SaiKumar Now I got it.

= IF(MAX(Table[Por Approval Orig])=BLANK() || MAX(Table[Gl Code Issue Date])=BLANK(),0,((MAX(Table[Por Approval Orig])-MAX(Table[Gl Code Issue Date]))*12)/365)

 

NOTE: Replace "Table " wiht your original table name.

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors