Training
Module
Digitally transform with Dynamics 365 - Training
Explore how Dynamics 365 business applications simplify CRM and ERP systems, aiding digital transformation for organizations.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
BinaryFormat.Transform(binaryFormat as function, function as function) as function
Returns a binary format that will transform the values read by another binary format. The binaryFormat
parameter specifies the binary format that will be used to read the value. The function
is invoked with the value read, and returns the transformed value.
Read a byte and add one to it.
Usage
let
binaryData = #binary({1}),
transformFormat = BinaryFormat.Transform(
BinaryFormat.Byte,
(x) => x + 1
)
in
transformFormat(binaryData)
Output
2
Training
Module
Digitally transform with Dynamics 365 - Training
Explore how Dynamics 365 business applications simplify CRM and ERP systems, aiding digital transformation for organizations.