Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi, Can anyone please help me below Qlikview formulas to convert into DAX.
1. AccountName
=if(AsOfDate<'$(vPerfStartDate)',' ',
if(AsOfDate>='$(vPerfStartDate)' AND AsOfDate<='$(vPerfEndDate)' and GL_SubType_Description <>'Cash',
if(not isnull(stg_row_id)
,stg_row_id
,TransactionBK)
)
)
2. Date: if(Dimensionality()=1,'Total' &' '&AccountName,if(RowNo()=1,AccountName,
Date(AsOfDate,'MM-DD-YYYY')))
3.Payment Method: =if(Transaction_Method='Office Check (with Signature)' or Transaction_Method='Office Check (without Signature)' ,'Check' &' #'& MaxString(Check_Wire)
,if(Receipt_Type='Non-Ayco Initiated','Non-Bill Pay Initiated',if(Receipt_Type='GTM Payroll','GTM Payroll',Transaction_Method)))
4.Category : If(rowno()=0 or AsOfDate<vPerfStartDate,'',if(isnull(TransactionBK),'Multiple',MaxString(GL_SubType_Description &' - '&[GL_Account_Description]))
)
5.Amount : (Sum({<AsOfDate={'<=$(vPerfEndDate)>=$(vPerfStartDate)'},GL_SubType_Description-={'Cash'},CashRelated={1}> }Amount)
)*-1
@Anonymous Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.