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
Solved! Go to 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.
@SaiKumar You can try this out:
Length = IFERROR((([Por Approval Orig]-[Gl Code Issue Date])*12)/365,0)
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)
The 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.
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.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
This session will provide guidance and teach campers the skills required to build Power BI reports that support multiple languages.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
217 | |
56 | |
47 | |
44 | |
43 |
User | Count |
---|---|
296 | |
207 | |
75 | |
75 | |
68 |