Check if a Dynamics 365 Field is Empty using JavaScript

1 Comment

To check if a Dynamics 365 field is empty, you can use:

if(Xrm.Page.getAttribute("fieldname").getValue() == null)

For example, if you wanted to check if the fax number field on the Account record is empty, first open the form and find the field name:

Get the field name:

Now if we add the following script to the loading of the account form:

[sourcecode language=”JavaScript”] function AccountOnLoad() {
if(Xrm.Page.getAttribute("fax").getValue() == null) {
alert("Fax is empty");
}
}
[/sourcecode]

If the fax field is empty, it will display:

Carl de Souza
Keep learning. Keep building.

Explore AI, agents & Microsoft technology.

I share practical ideas, tutorials, and videos about AI, AI agents, Microsoft technologies, and the Power Platform.

Subscribe on YouTube →
Carl de Souza Enterprise Architect at Microsoft · AI Technology Expert

One Response to Check if a Dynamics 365 Field is Empty using JavaScript

  1. Does your website have a contact page? I’m having teouble locating it but, I’d likme tto end you an e-mail.
    I’ve got some recommendations for yoour blog you might be interested in hearing.
    Either way, great website and I look forward to seeing it grow over time.

Leave a Reply

Your email address will not be published. Required fields are marked *