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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
YWang100324
New Member

IF Blank

Hi,

 

Could you please review below formula as I couldn't get it to work...

 

% of Return = IF(ISBLANK( DIVIDE([Total Profit Trading], [Total Income Trading]), BLANK()),
(DIVIDE([Total Profit Trading], [Total Income Trading])))
 
The error message says, too many arguments were passed to the ISblank Function...
 
Thank you.
1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

You needed a 2nd ) at the end of your first DIVIDE, but you can just use this expression to get same result I believe.

 

DIVIDE([Total Profit Trading][Total Income Trading])

 

Pat

Microsoft Employee

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @YWang100324 

with your logic, try like:

% of Return = 
IF(
    ISBLANK(DIVIDE([Total Profit Trading], [Total Income Trading])), 
    BLANK(),
    DIVIDE([Total Profit Trading], [Total Income Trading])
)
 
or why not try directly:
% of Return=
DIVIDE([Total Profit Trading], [Total Income Trading])
ppm1
Solution Sage
Solution Sage

You needed a 2nd ) at the end of your first DIVIDE, but you can just use this expression to get same result I believe.

 

DIVIDE([Total Profit Trading][Total Income Trading])

 

Pat

Microsoft Employee

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.