The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello,
Please help, I am not sure what I am missing.
If(Or(ISBLANK(PowerBi[Document Date].[Date]),ISBLANK(PowerBi[Created Date]),"No",If(PowerBi[Document Date].[Date]=PowerBi[Created Date],"No",If(PowerBi[Document Date].[Date]>PowerBi[Created Date],"No","Yes"))))
I am getting an error message: Too many arguments were passed to the OR function. The maximum argument count for the function is 2.
Thank you so much and looking forward for your assistance.
Solved! Go to Solution.
Please try
=
IF (
OR (
ISBLANK ( PowerBi[Document Date].[Date] ),
ISBLANK ( PowerBi[Created Date] )
),
"No",
IF (
PowerBi[Document Date].[Date] = PowerBi[Created Date],
"No",
IF ( PowerBi[Document Date].[Date] > PowerBi[Created Date], "No", "Yes" )
)
)
Please try
=
IF (
OR (
ISBLANK ( PowerBi[Document Date].[Date] ),
ISBLANK ( PowerBi[Created Date] )
),
"No",
IF (
PowerBi[Document Date].[Date] = PowerBi[Created Date],
"No",
IF ( PowerBi[Document Date].[Date] > PowerBi[Created Date], "No", "Yes" )
)
)
Thank you so much!You are the best!
User | Count |
---|---|
15 | |
13 | |
9 | |
6 | |
6 |
User | Count |
---|---|
29 | |
18 | |
13 | |
8 | |
5 |